ab11ad563092a3f3ac4d18a00445db74705cb89d
[senf.git] / senf / Socket / Protocols / INet / TCPSocketHandle.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief TCPv4SocketHandle and TCPv6SocketHandle non-inline non-template implementation
25  */
26
27 #include "TCPSocketHandle.hh"
28 //#include "TCPSocketHandle.ih"
29
30 // Custom includes
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <sys/ioctl.h>
34
35 #include <senf/Utils/Exception.hh>
36
37 //#include "TCPSocketHandle.mpp"
38 #define prefix_
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 // senf::TCPv4SocketProtocol
43
44 prefix_ void senf::TCPv4SocketProtocol::init_client()
45     const
46 {
47     int sock = ::socket(PF_INET,SOCK_STREAM,0);
48     if (sock < 0)
49         SENF_THROW_SYSTEM_EXCEPTION("");
50     fd(sock);
51 }
52
53 prefix_ void
54 senf::TCPv4SocketProtocol::init_client(INet4SocketAddress const & address)
55     const
56 {
57     init_client();
58     clientHandle().connect(address);
59 }
60
61 prefix_ void senf::TCPv4SocketProtocol::init_server()
62     const
63 {
64     int sock = ::socket(PF_INET,SOCK_STREAM,0);
65     if (sock < 0)
66         SENF_THROW_SYSTEM_EXCEPTION("");
67     fd(sock);
68 }
69
70 prefix_ void senf::TCPv4SocketProtocol::init_server(INet4SocketAddress const & address,
71                                                            unsigned backlog)
72     const
73 {
74     init_server();
75     reuseaddr(true);
76     serverHandle().bind(address);
77     if (::listen(fd(),backlog) < 0)
78         SENF_THROW_SYSTEM_EXCEPTION("");
79 }
80
81 //-/////////////////////////////////////////////////////////////////////////////////////////////////
82 // senf::TCPv6SocketProtocol::
83
84 prefix_ void senf::TCPv6SocketProtocol::init_client()
85     const
86 {
87     int sock = ::socket(PF_INET6,SOCK_STREAM,0);
88     if (sock < 0)
89         SENF_THROW_SYSTEM_EXCEPTION("");
90     fd(sock);
91 }
92
93 prefix_ void
94 senf::TCPv6SocketProtocol::init_client(INet6SocketAddress const & address)
95     const
96 {
97     init_client();
98     clientHandle().connect(address);
99 }
100
101 prefix_ void senf::TCPv6SocketProtocol::init_server()
102     const
103 {
104     int sock = ::socket(PF_INET6,SOCK_STREAM,0);
105     if (sock < 0)
106         SENF_THROW_SYSTEM_EXCEPTION("");
107     fd(sock);
108 }
109
110 prefix_ void senf::TCPv6SocketProtocol::init_server(INet6SocketAddress const & address,
111                                                     unsigned backlog)
112     const
113 {
114     init_server();
115     serverHandle().bind(address);
116     reuseaddr(true);
117     if (::listen(fd(),backlog) < 0)
118         SENF_THROW_SYSTEM_EXCEPTION("");
119 }
120
121 //-/////////////////////////////////////////////////////////////////////////////////////////////////
122 #undef prefix_
123 //#include "TCPSocketHandle.mpp"
124
125 \f
126 // Local Variables:
127 // mode: c++
128 // fill-column: 100
129 // c-file-style: "senf"
130 // indent-tabs-mode: nil
131 // ispell-local-dictionary: "american"
132 // compile-command: "scons -u test"
133 // comment-column: 40
134 // End: