Merged revisions 570-572,574-575,578-579,581-595,598-611 via svnmerge from
[senf.git] / Socket / Protocols / INet / UDPSocketHandle.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@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 /** \file
24     \brief UDPv4SocketHandle and UDPv6SocketHandle non-inline non-template implementation
25  */
26
27 #include "UDPSocketHandle.hh"
28 //#include "UDPSocketHandle.ih"
29
30 // Custom includes
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <sys/ioctl.h>
34
35 #include "../../../Utils/Exception.hh"
36
37 //#include "UDPSocketHandle.mpp"
38 #define prefix_
39 ///////////////////////////////cc.p////////////////////////////////////////
40
41 ///////////////////////////////////////////////////////////////////////////
42 // senf::UDPv4SocketProtocol
43
44 prefix_ void senf::UDPv4SocketProtocol::init_client()
45     const
46 {
47     int sock = ::socket(PF_INET,SOCK_DGRAM,0);
48     if (sock < 0)
49         throwErrno();
50     fd(sock);
51 }
52
53 prefix_ void
54 senf::UDPv4SocketProtocol::init_client(INet4SocketAddress const & address)
55     const
56 {
57     init_client();
58     clientHandle().bind(address);
59 }
60
61 prefix_ std::auto_ptr<senf::SocketProtocol> senf::UDPv4SocketProtocol::clone()
62     const
63 {
64     return std::auto_ptr<SocketProtocol>(new UDPv4SocketProtocol());
65 }
66
67 ///////////////////////////////////////////////////////////////////////////
68 // senf::UDPv6SocketProtocol::
69
70 prefix_ void senf::UDPv6SocketProtocol::init_client()
71     const
72 {
73     int sock = ::socket(PF_INET6,SOCK_DGRAM,0);
74     if (sock < 0)
75         throwErrno();
76     fd(sock);
77 }
78
79 prefix_ void
80 senf::UDPv6SocketProtocol::init_client(INet6SocketAddress const & address)
81     const
82 {
83     init_client();
84     clientHandle().bind(address);
85 }
86
87 prefix_ std::auto_ptr<senf::SocketProtocol> senf::UDPv6SocketProtocol::clone()
88     const
89 {
90     return std::auto_ptr<SocketProtocol>(new UDPv6SocketProtocol());
91 }
92
93 ///////////////////////////////cc.e////////////////////////////////////////
94 #undef prefix_
95 //#include "UDPSocketHandle.mpp"
96
97 \f
98 // Local Variables:
99 // mode: c++
100 // fill-column: 100
101 // c-file-style: "senf"
102 // indent-tabs-mode: nil
103 // ispell-local-dictionary: "american"
104 // compile-command: "scons -u test"
105 // comment-column: 40
106 // End: