1 // $Id: RawINetSocketHandle.cc 597 2008-01-15 09:16:20Z g0dil $
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
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
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.
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.
19 // The Original Code is Fraunhofer FOKUS code.
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.
26 // David Wagner <dw6@berlios.de>
28 #include "RawINetSocketHandle.hh"
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <sys/ioctl.h>
35 #include <senf/Utils/Exception.hh>
37 //#include "UDPSocketHandle.mpp"
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 // senf::RawV4SocketProtocol
44 prefix_ void senf::RawV4SocketProtocol::init_client()
47 init_client(IPPROTO_RAW);
51 senf::RawV4SocketProtocol::init_client(int const & protocol)
54 int sock = ::socket(PF_INET, SOCK_RAW, protocol);
56 SENF_THROW_SYSTEM_EXCEPTION("could not open RawV4Socket");
61 senf::RawV4SocketProtocol::init_client(int const & protocol, INet4SocketAddress const & address)
64 init_client(protocol);
65 clientHandle().bind(address);
68 //-/////////////////////////////////////////////////////////////////////////////////////////////////
69 // senf::RawV6SocketProtocol::
71 prefix_ void senf::RawV6SocketProtocol::init_client()
74 init_client(IPPROTO_RAW);
77 prefix_ void senf::RawV6SocketProtocol::init_client(int const & protocol)
80 int sock = ::socket(PF_INET6,SOCK_RAW,protocol);
82 SENF_THROW_SYSTEM_EXCEPTION("could not open RawV6Socket");
87 senf::RawV6SocketProtocol::init_client(int const & protocol, INet6SocketAddress const & address)
90 init_client(protocol);
91 clientHandle().bind(address);
94 //-/////////////////////////////////////////////////////////////////////////////////////////////////
96 //#include "RawINetSocketHandle.mpp"
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"