svn cleanup
[anytun.git] / Sockets / HttpPutSocket.h
blobcafc7b9c6cd3ca8f031fac649b9b551ef0911b31
1 /** \file HttpPutSocket.h
2 ** \date 2004-10-30
3 ** \author grymse@alhem.net
4 **/
5 /*
6 Copyright (C) 2004-2007 Anders Hedstrom
8 This library is made available under the terms of the GNU GPL.
10 If you would like to use this library in a closed-source application,
11 a separate license agreement is available. For information about
12 the closed-source license agreement for the C++ sockets library,
13 please visit http://www.alhem.net/Sockets/license.html and/or
14 email license@alhem.net.
16 This program is free software; you can redistribute it and/or
17 modify it under the terms of the GNU General Public License
18 as published by the Free Software Foundation; either version 2
19 of the License, or (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 #ifndef _SOCKETS_HttpPutSocket_H
31 #define _SOCKETS_HttpPutSocket_H
33 #include "sockets-config.h"
34 #include "HttpClientSocket.h"
36 #ifdef SOCKETS_NAMESPACE
37 namespace SOCKETS_NAMESPACE {
38 #endif
41 class ISocketHandler;
43 /** Put http page.
44 \ingroup http */
45 class HttpPutSocket : public HttpClientSocket
47 public:
48 HttpPutSocket(ISocketHandler&);
49 /** client constructor,
50 \param url_in = 'http://host:port/resource' */
51 HttpPutSocket(ISocketHandler&,const std::string& url_in);
52 ~HttpPutSocket();
54 // these must be specified before connecting / adding to handler
55 /** Set filename to send. */
56 void SetFile(const std::string& );
57 /** Set mimetype of file to send. */
58 void SetContentType(const std::string& );
60 /** connect to host:port derived from url in constructor */
61 void Open();
63 /** http put client implemented in OnConnect */
64 void OnConnect();
66 private:
67 HttpPutSocket(const HttpPutSocket& s) : HttpClientSocket(s) {} // copy constructor
68 HttpPutSocket& operator=(const HttpPutSocket& ) { return *this; } // assignment operator
70 std::string m_filename;
71 std::string m_content_type;
72 long m_content_length;
78 #ifdef SOCKETS_NAMESPACE
80 #endif
82 #endif // _SOCKETS_HttpPutSocket_H