a6911f79445f712f57bbe3423704a949e41e812e
[senf.git] / senf / Socket / Protocols / INet / ConnectedRawINetSocketHandle.cc
1 // $Id: ConnectedRawINetSocketHandle.cc 597 2008-01-15 09:16:20Z g0dil $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     David Wagner <dw6@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 #include "ConnectedRawINetSocketHandle.hh"
24
25 // Custom includes
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <sys/ioctl.h>
29
30 #include <senf/Utils/Exception.hh>
31
32 //#include "UDPSocketHandle.mpp"
33 #define prefix_
34 //-/////////////////////////////////////////////////////////////////////////////////////////////////
35
36 //-/////////////////////////////////////////////////////////////////////////////////////////////////
37 // senf::ConnectedRawV4SocketProtocol
38
39 prefix_ void senf::ConnectedRawV4SocketProtocol::init_client()
40     const
41 {
42     init_client(IPPROTO_RAW);
43 }
44
45 prefix_ void
46 senf::ConnectedRawV4SocketProtocol::init_client(int const & protocol)
47     const
48 {
49     int sock = ::socket(PF_INET, SOCK_RAW, protocol);
50     if (sock < 0)
51         SENF_THROW_SYSTEM_EXCEPTION("");
52     fd(sock);
53 }
54
55 prefix_ void
56 senf::ConnectedRawV4SocketProtocol::init_client(int const & protocol, INet4SocketAddress const & address)
57     const
58 {
59     init_client(protocol);
60     clientHandle().connect(address);
61 }
62
63 //-/////////////////////////////////////////////////////////////////////////////////////////////////
64 // senf::UDPv6SocketProtocol::
65
66 prefix_ void senf::ConnectedRawV6SocketProtocol::init_client()
67     const
68 {
69     init_client(IPPROTO_RAW);
70 }
71
72 prefix_ void senf::ConnectedRawV6SocketProtocol::init_client(int const & protocol)
73     const
74 {
75     int sock = ::socket(PF_INET6,SOCK_RAW,protocol);
76     if (sock < 0)
77         SENF_THROW_SYSTEM_EXCEPTION("");
78     fd(sock);
79 }
80
81 prefix_ void
82 senf::ConnectedRawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
83     const
84 {
85     init_client(protocol);
86     if (address.boolean_test()) {
87         //only connect if socket is not [::]:0, this results in an irreversible binding to the lo interface (linux 2.6.15)
88         clientHandle().connect(address);
89     }
90 }
91
92 //-/////////////////////////////////////////////////////////////////////////////////////////////////
93 #undef prefix_
94 //#include "ConnectedRawINetSocketHandle.mpp"
95
96 \f
97 // Local Variables:
98 // mode: c++
99 // fill-column: 100
100 // comment-column: 40
101 // c-file-style: "senf"
102 // indent-tabs-mode: nil
103 // ispell-local-dictionary: "american"
104 // compile-command: "scons -u test"
105 // End: