Skip to content

Commit

Permalink
add to readme/faq
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Feb 27, 2019
1 parent ac65ae9 commit 9cc246b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FluentFTP/Client/FtpClient_Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ private void DetectFtpServer() {
// Welcome message: "220 tdm-QWERTY-fp00.itc.intranet FTP SERVER T9552H02 (Version H02 TANDEM 11SEP2008) ready."
// Welcome message: "220 FTP SERVER T9552G08 (Version G08 TANDEM 15JAN2008) ready."
else if (welcome.Contains("FTP SERVER ") && welcome.Contains(" TANDEM ")) {
m_serverType = FtpServer.TandemNonStop;
m_serverType = FtpServer.NonStopTandem;
}

// trace it
Expand Down
4 changes: 2 additions & 2 deletions FluentFTP/Helpers/FtpEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -653,9 +653,9 @@ public enum FtpServer {
/// </summary>
GlobalScapeEFT,
/// <summary>
/// Definitely Tandem/NonStop server
/// Definitely HP NonStop/Tandem server
/// </summary>
TandemNonStop,
NonStopTandem,
/// <summary>
/// Definitely Serv-U server
/// </summary>
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,8 @@ You can read `ServerType` to get the exact type of FTP server software that you'
- OpenVMS
- Windows CE
- GlobalScape EFT
- Tandem/NonStop
- HP NonStop/Tandem
- Serv-U
You can also read `ServerOS` to get the operating system of the FTP server you've connected to. We can detect:
Expand Down
3 changes: 3 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes

#### Unreleased
- New: FTP Server software detection (HP NonStop/Tandem, GlobalScape EFT, Serv-U)

#### 23.0.0
- New: Ability to cancel all async methods via `CancellationToken` (thanks [WolfspiritM](/WolfspiritM))
- New: `ReadTimeout` is now honored by all async methods (thanks [WolfspiritM](/WolfspiritM))
Expand Down

0 comments on commit 9cc246b

Please sign in to comment.