f94d9598671147d6f13f02cef30b98858929fff6
[libt2n] / src / socket_server.cpp
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
20 #include "socket_server.hxx"
21
22 namespace libt2n
23 {
24
25 socket_server::socket_server(int port, const char* ip)
26     : server()
27 {
28     type=tcp;
29
30 }
31
32 socket_server::socket_server(const char* path, mode_t chmod, const char* user, const char* group)
33     : server()
34 {
35     type=unix;
36     unix_path=path;
37
38     struct sockaddr_un unix_name;
39
40     /* Create the socket. */
41     socket = socket (PF_UNIX, SOCK_STREAM, 0);
42     if (socket < 0)
43     {
44         string err="error opening socket: ";
45         err+=::strerror(errno);
46
47 //        throw EXCEPTION(network_server_error,err);
48     }
49
50 }
51
52 socket_server::~socket_server()
53 {
54     close(socket);
55
56     if (type==unix)
57         unlink(unix_path.c_str());
58 }
59
60
61
62 void socket_server::fill_buffer(long long usec_timeout)
63 {
64
65 }
66
67 socket_connection::socket_connection(int _socket, int _timeout)
68     : connection(_timeout)
69 {
70
71 }
72
73 void socket_connection::close()
74 {
75
76 }
77
78 void socket_connection::fill_buffer(void)
79 {
80
81 }
82
83 void socket_connection::write(const std::string& data)
84 {
85
86 }
87
88 }