]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/protocol/protocol.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: protocol/protocol.h
3 // Purpose: interface of wxProtocol
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 Error values returned by wxProtocol.
14 wxPROTO_NOERR
= 0, //!< No error.
15 wxPROTO_NETERR
, //!< A generic network error occurred.
16 wxPROTO_PROTERR
, //!< An error occurred during negotiation.
17 wxPROTO_CONNERR
, //!< The client failed to connect the server.
18 wxPROTO_INVVAL
, //!< Invalid value.
19 wxPROTO_NOHNDLR
, //!< Not currently used.
20 wxPROTO_NOFILE
, //!< The remote file doesn't exist.
21 wxPROTO_ABRT
, //!< Last action aborted.
22 wxPROTO_RCNCT
, //!< An error occurred during reconnection.
23 wxPROTO_STREAMING
//!< Someone tried to send a command during a transfer.
29 Represents a protocol for use with wxURL.
34 @see wxSocketBase, wxURL
36 class wxProtocol
: public wxSocketClient
40 Abort the current stream.
43 It is advised to destroy the input stream instead of aborting the stream
46 @return Returns @true, if successful, else @false.
51 Returns the type of the content of the last opened stream. It is a mime-type.
53 wxString
GetContentType();
56 Returns the last occurred error.
60 wxProtocolError
GetError();
63 Creates a new input stream on the specified path.
65 You can use all but seek() functionality of wxStream.
66 Seek() isn't available on all streams. For example, HTTP or FTP streams
67 don't deal with it. Other functions like StreamSize() and Tell() aren't
68 available for the moment for this sort of stream.
69 You will be notified when the EOF is reached by an error.
71 @return Returns the initialized stream. You will have to delete it
72 yourself once you don't use it anymore. The destructor
73 closes the network connection.
77 wxInputStream
* GetInputStream(const wxString
& path
);
80 Tries to reestablish a previous opened connection (close and renegotiate
83 @return @true, if the connection is established, else @false.
88 Sets the authentication password. It is mainly useful when FTP is used.
90 void SetPassword(const wxString
& user
);
93 Sets the authentication user. It is mainly useful when FTP is used.
95 void SetUser(const wxString
& user
);