libt2n: (gerd) refactored connection classes
[libt2n] / src / socket_client.hxx
1 /***************************************************************************
2  *   Copyright (C) 2006 by Gerd v. Egidy                                   *
3  *   gve@intra2net.com                                                     *
4  *                                                                         *
5  *   This library is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU Lesser General Public License version   *
7  *   2.1 as published by the Free Software Foundation.                     *
8  *                                                                         *
9  *   This library is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU Lesser General Public License for more details.                   *
13  *                                                                         *
14  *   You should have received a copy of the GNU Lesser General Public      *
15  *   License along with this program; if not, write to the                 *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19 #ifndef __LIBT2N_SOCKET_CLIENT
20 #define __LIBT2N_SOCKET_CLIENT
21
22 #include "client.hxx"
23 #include "socket_handler.hxx"
24
25 namespace libt2n
26 {
27
28 class socket_client_connection : public client_connection, socket_handler
29 {
30     private:
31         void real_write(const std::string& data)
32             { socket_handler::write(data); }
33
34     public:
35         socket_client_connection(int port, const char* ip="0.0.0.0");
36         socket_client_connection(const char* path, mode_t filemode, const char* user="", const char* group="");
37
38         void fill_buffer(long long usec_timeout=-1)
39             { socket_handler::fill_buffer(buffer,usec_timeout); }
40
41         void close();
42 };
43
44 }
45
46 #endif