added more or less meaningful descriptions when throwing SystemExceptions
[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 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   David Wagner <dw6@berlios.de>
27
28 #include "RawINetSocketHandle.hh"
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 "UDPSocketHandle.mpp"
38 #define prefix_
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 // senf::RawV4SocketProtocol
43
44 prefix_ void senf::RawV4SocketProtocol::init_client()
45     const
46 {
47     init_client(IPPROTO_RAW);
48 }
49
50 prefix_ void
51 senf::RawV4SocketProtocol::init_client(int const & protocol)
52     const
53 {
54     int sock = ::socket(PF_INET, SOCK_RAW, protocol);
55     if (sock < 0)
56         SENF_THROW_SYSTEM_EXCEPTION("could not open RawV4Socket");
57     fd(sock);
58 }
59
60 prefix_ void
61 senf::RawV4SocketProtocol::init_client(int const & protocol, INet4SocketAddress const & address)
62     const
63 {
64     init_client(protocol);
65     clientHandle().bind(address);
66 }
67
68 //-/////////////////////////////////////////////////////////////////////////////////////////////////
69 // senf::RawV6SocketProtocol::
70
71 prefix_ void senf::RawV6SocketProtocol::init_client()
72     const
73 {
74     init_client(IPPROTO_RAW);
75 }
76
77 prefix_ void senf::RawV6SocketProtocol::init_client(int const & protocol)
78     const
79 {
80     int sock = ::socket(PF_INET6,SOCK_RAW,protocol);
81     if (sock < 0)
82         SENF_THROW_SYSTEM_EXCEPTION("could not open RawV6Socket");
83     fd(sock);
84 }
85
86 prefix_ void
87 senf::RawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
88     const
89 {
90     init_client(protocol);
91     clientHandle().bind(address);
92 }
93
94 //-/////////////////////////////////////////////////////////////////////////////////////////////////
95 #undef prefix_
96 //#include "RawINetSocketHandle.mpp"
97
98 \f
99 // Local Variables:
100 // mode: c++
101 // fill-column: 100
102 // comment-column: 40
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // End: