]> git.saurik.com Git - wxWidgets.git/commitdiff
Document wxHTTP::Connect(wxSockAddress) overload.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 19 May 2010 12:36:28 +0000 (12:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 19 May 2010 12:36:28 +0000 (12:36 +0000)
See #12040.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/protocol/http.h

index 9cd5e50342541206136954d4545157ac26ddee79..314b1571a8706f97b66fb8d604f1a6c30fd17e74 100644 (file)
@@ -38,9 +38,14 @@ public:
         By default, connection is made to the port 80 of the specified @a host.
         You may connect to a non-default port by specifying it explicitly using
         the second overload.
+
+        Currently wxHTTP only supports IPv4.
+
+        For the overload taking wxSockAddress, the @a wait argument is ignored.
      */
     virtual bool Connect(const wxString& host);
     virtual bool Connect(const wxString& host, unsigned short port);
+    virtual bool Connect(const wxSockAddress& addr, bool wait);
     //@}
 
     /**