Blocked revisions 580 via svnmerge
[senf.git] / Socket / Protocols / INet / RawInetSocketHandle.cc
1 // $Id$
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 "../../../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         throwErrno();
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     bind(address);
61 }
62
63 prefix_ std::auto_ptr<senf::SocketProtocol> senf::RawV4SocketProtocol::clone()
64     const
65 {
66     return std::auto_ptr<SocketProtocol>(new RawV4SocketProtocol());
67 }
68
69 ///////////////////////////////////////////////////////////////////////////
70 // senf::RawV6SocketProtocol::
71
72 prefix_ void senf::RawV6SocketProtocol::init_client()
73     const
74 {
75     init_client(IPPROTO_RAW);
76 }
77
78 prefix_ void senf::RawV6SocketProtocol::init_client(int const & protocol)
79     const
80 {
81     int sock = ::socket(PF_INET6,SOCK_RAW,protocol);
82     if (sock < 0)
83         throwErrno();
84     fd(sock);
85 }
86
87 prefix_ void
88 senf::RawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
89     const
90 {
91     init_client(protocol);
92     bind(address);
93 }
94
95 prefix_ std::auto_ptr<senf::SocketProtocol> senf::RawV6SocketProtocol::clone()
96     const
97 {
98     return std::auto_ptr<SocketProtocol>(new RawV6SocketProtocol());
99 }
100
101 ///////////////////////////////cc.e////////////////////////////////////////
102 #undef prefix_
103 //#include "RawInetSocketHandle.mpp"
104
105 \f
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // comment-column: 40
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // End: