wxProtocolDerived from wxSocketClient wxSocketBase wxObject Include files <wx/protocol/protocol.h> See also Members
wxProtocol::Reconnect
wxProtocol::Reconnectbool Reconnect() Tries to reestablish a previous opened connection (close and renegotiate connection). Return value true, if the connection is established, else false.
wxProtocol::GetInputStreamwxInputStream * GetInputStream(const wxString& path) Creates a new input stream on the specified path. You can use all but seek functionality of wxStream. Seek isn't available on all streams. For example, HTTP or FTP streams don't deal with it. Other functions like StreamSize and Tell aren't available for the moment for this sort of stream. You will be notified when the EOF is reached by an error. Return value Returns the initialized stream. You will have to delete it yourself once you don't use it anymore. The destructor closes the network connection. See also
wxProtocol::Abortbool Abort() Abort the current stream. Warning It is advised to destroy the input stream instead of aborting the stream this way. Return value Returns true, if successful, else false.
wxProtocol::GetErrorwxProtocolError GetError() Returns the last occurred error.
wxProtocol::GetContentTypewxString GetContentType() Returns the type of the content of the last opened stream. It is a mime-type.
wxProtocol::SetUservoid SetUser(const wxString& user) Sets the authentication user. It is mainly useful when FTP is used.
wxProtocol::SetPasswordvoid SetPassword(const wxString& user) Sets the authentication password. It is mainly useful when FTP is used.
|