]> git.saurik.com Git - wxWidgets.git/blame - include/wx/protocol/http.h
Compilation fix for wxUSE_DRAG_AND_DROP==0.
[wxWidgets.git] / include / wx / protocol / http.h
CommitLineData
f4ada568
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: http.h
3// Purpose: HTTP protocol
4// Author: Guilhem Lavaux
5// Modified by:
6// Created: August 1997
7// RCS-ID: $Id$
8// Copyright: (c) 1997, 1998 Guilhem Lavaux
371a5b4e 9// Licence: wxWindows licence
f4ada568
GL
10/////////////////////////////////////////////////////////////////////////////
11#ifndef _WX_HTTP_H
12#define _WX_HTTP_H
13
a5d46b73
VZ
14#include "wx/defs.h"
15
16#if wxUSE_PROTOCOL_HTTP
17
df5168c4 18#include "wx/hashmap.h"
f4ada568
GL
19#include "wx/protocol/protocol.h"
20
7c4728f6
VS
21WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxString, wxStringToStringHashMap,
22 class WXDLLIMPEXP_NET );
df5168c4 23
7c4728f6 24class WXDLLIMPEXP_NET wxHTTP : public wxProtocol
71414756 25{
f4ada568
GL
26public:
27 wxHTTP();
28 ~wxHTTP();
29
0e4acbd4
JS
30 virtual bool Connect(const wxString& host, unsigned short port);
31 virtual bool Connect(const wxString& host) { return Connect(host, 0); }
32 virtual bool Connect(wxSockAddress& addr, bool wait);
f4ada568
GL
33 bool Abort();
34 wxInputStream *GetInputStream(const wxString& path);
35 inline wxProtocolError GetError() { return m_perr; }
36 wxString GetContentType();
37
38 void SetHeader(const wxString& header, const wxString& h_data);
71414756 39 wxString GetHeader(const wxString& header) const;
f9133b32 40 void SetPostBuffer(const wxString& post_buf);
f4ada568 41
f61815af
GL
42 void SetProxyMode(bool on);
43
f4ada568 44protected:
71414756
VZ
45 enum wxHTTP_Req
46 {
a58d5df4 47 wxHTTP_GET,
f9133b32 48 wxHTTP_POST,
a58d5df4 49 wxHTTP_HEAD
71414756
VZ
50 };
51
52 typedef wxStringToStringHashMap::iterator wxHeaderIterator;
53
f4ada568
GL
54 bool BuildRequest(const wxString& path, wxHTTP_Req req);
55 void SendHeaders();
56 bool ParseHeaders();
2fb203e6 57
71414756
VZ
58 // find the header in m_headers
59 wxHeaderIterator FindHeader(const wxString& header) const;
60
2fb203e6
VZ
61 // deletes the header value strings
62 void ClearHeaders();
22f3361e 63
71414756
VZ
64 wxProtocolError m_perr;
65 wxStringToStringHashMap m_headers;
66 bool m_read,
67 m_proxy_mode;
68 wxSockAddress *m_addr;
69 wxString m_post_buf;
70
71 DECLARE_DYNAMIC_CLASS(wxHTTP)
72 DECLARE_PROTOCOL(wxHTTP)
73 DECLARE_NO_COPY_CLASS(wxHTTP)
f4ada568
GL
74};
75
a5d46b73
VZ
76#endif // wxUSE_PROTOCOL_HTTP
77
78#endif // _WX_HTTP_H
79