675ba10da84e6a805e59acfa3ba0b5e49b0f9ccb
[senf.git] / senf / Socket / Protocols / INet / RawINetSocketHandle.cc
1 // $Id: RawINetSocketHandle.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 "RawINetSocketHandle.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 ///////////////////////////////cc.p////////////////////////////////////////
35
36 ///////////////////////////////////////////////////////////////////////////
37 // senf::RawV4SocketProtocol
38
39 prefix_ void senf::RawV4SocketProtocol::init_client()
40     const
41 {
42     init_client(IPPROTO_RAW);
43 }
44
45 prefix_ void
46 senf::RawV4SocketProtocol::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::RawV4SocketProtocol::init_client(int const & protocol, INet4SocketAddress const & address)
57     const
58 {
59     init_client(protocol);
60     clientHandle().bind(address);
61 }
62
63 ///////////////////////////////////////////////////////////////////////////
64 // senf::RawV6SocketProtocol::
65
66 prefix_ void senf::RawV6SocketProtocol::init_client()
67     const
68 {
69     init_client(IPPROTO_RAW);
70 }
71
72 prefix_ void senf::RawV6SocketProtocol::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::RawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
83     const
84 {
85     init_client(protocol);
86     clientHandle().bind(address);
87 }
88
89 ///////////////////////////////cc.e////////////////////////////////////////
90 #undef prefix_
91 //#include "RawINetSocketHandle.mpp"
92
93 \f
94 // Local Variables:
95 // mode: c++
96 // fill-column: 100
97 // comment-column: 40
98 // c-file-style: "senf"
99 // indent-tabs-mode: nil
100 // ispell-local-dictionary: "american"
101 // compile-command: "scons -u test"
102 // End: