Renamed namespaces satcom::lib and satcom::pkf to senf
[senf.git] / Socket / TCPSocketHandle.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 // Definition of non-inline non-template functions
24
25 #include "TCPSocketHandle.hh"
26 //#include "TCPSocketHandle.ih"
27
28 // Custom includes
29 #include <sys/types.h>
30 #include <sys/socket.h>
31 #include <sys/ioctl.h>
32
33 #include "Utils/Exception.hh"
34
35 //#include "TCPSocketHandle.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ void senf::TCPv4SocketProtocol::init_client()
40     const
41 {
42     int sock = ::socket(PF_INET,SOCK_STREAM,0);
43     if (sock < 0)
44         throw SystemException(errno);
45     body().fd(sock);
46 }
47
48 prefix_ void
49 senf::TCPv4SocketProtocol::init_client(INet4Address const & address)
50     const
51 {
52     init_client();
53     connect(address);
54 }
55
56 prefix_ void senf::TCPv4SocketProtocol::init_server()
57     const
58 {
59     int sock = ::socket(PF_INET,SOCK_STREAM,0);
60     if (sock < 0)
61         throw SystemException(errno);
62     body().fd(sock);
63 }
64
65 prefix_ void senf::TCPv4SocketProtocol::init_server(INet4Address const & address,
66                                                            unsigned backlog)
67     const
68 {
69     init_server();
70     bind(address);
71     reuseaddr(true);
72     if (::listen(body().fd(),backlog) < 0)
73         throw SystemException(errno);
74 }
75
76 prefix_ std::auto_ptr<senf::SocketProtocol> senf::TCPv4SocketProtocol::clone()
77     const
78 {
79     return std::auto_ptr<SocketProtocol>(new TCPv4SocketProtocol());
80 }
81
82 ///////////////////////////////cc.e////////////////////////////////////////
83 #undef prefix_
84 //#include "TCPSocketHandle.mpp"
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // c-file-style: "senf"
90 // End: