]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/protocol/ftp.h
It's not an array of pointers to dashes, but rather an array of dash values
[wxWidgets.git] / interface / wx / protocol / ftp.h
index 364e5e434d9cb4c6634c77c8e09b69bea8e5f13e..aecb0ddb3ba2a4fe0fc04e913d319a5973977a0e 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxFTP
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -112,6 +112,22 @@ public:
 
 
 
+    //@{
+    /**
+        Connect to the FTP server to default port (21) of the specified @a host.
+     */
+    virtual bool Connect(const wxString& host);
+
+    /**
+        Connect to the FTP server to any port of the specified @a host.
+        By default (@a port = 0), connection is made to default FTP port (21)
+        of the specified @a host.
+
+        @since 2.9.1
+     */
+    virtual bool Connect(const wxString& host, unsigned short port);
+    //@}
+
     /**
         @name Functions for managing the FTP connection
      */