added more or less meaningful descriptions when throwing SystemExceptions
[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 //
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 "ConnectedRawINetSocketHandle.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::ConnectedRawV4SocketProtocol
43
44 prefix_ void senf::ConnectedRawV4SocketProtocol::init_client()
45     const
46 {
47     init_client(IPPROTO_RAW);
48 }
49
50 prefix_ void
51 senf::ConnectedRawV4SocketProtocol::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 ConnectedRawV4Socket");
57     fd(sock);
58 }
59
60 prefix_ void
61 senf::ConnectedRawV4SocketProtocol::init_client(int const & protocol, INet4SocketAddress const & address)
62     const
63 {
64     init_client(protocol);
65     clientHandle().connect(address);
66 }
67
68 //-/////////////////////////////////////////////////////////////////////////////////////////////////
69 // senf::UDPv6SocketProtocol::
70
71 prefix_ void senf::ConnectedRawV6SocketProtocol::init_client()
72     const
73 {
74     init_client(IPPROTO_RAW);
75 }
76
77 prefix_ void senf::ConnectedRawV6SocketProtocol::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 ConnectedRawV6Socket");
83     fd(sock);
84 }
85
86 prefix_ void
87 senf::ConnectedRawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
88     const
89 {
90     init_client(protocol);
91     if (address.boolean_test()) {
92         //only connect if socket is not [::]:0, this results in an irreversible binding to the lo interface (linux 2.6.15)
93         clientHandle().connect(address);
94     }
95 }
96
97 //-/////////////////////////////////////////////////////////////////////////////////////////////////
98 #undef prefix_
99 //#include "ConnectedRawINetSocketHandle.mpp"
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // comment-column: 40
106 // c-file-style: "senf"
107 // indent-tabs-mode: nil
108 // ispell-local-dictionary: "american"
109 // compile-command: "scons -u test"
110 // End: