bc0517b5bb72de8de1c36106925fd40a9e736475
[senf.git] / senf / 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 <senf/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         SENF_THROW_SYSTEM_EXCEPTION("");
50     fd(sock);
51 }
52
53 prefix_ void
54 senf::UDPv4SocketProtocol::init_client(INet4SocketAddress const & address)
55     const
56 {
57     init_client();
58     reuseaddr(true);
59     clientHandle().bind(address);
60 }
61
62 ///////////////////////////////////////////////////////////////////////////
63 // senf::UDPv6SocketProtocol::
64
65 prefix_ void senf::UDPv6SocketProtocol::init_client()
66     const
67 {
68     int sock = ::socket(PF_INET6,SOCK_DGRAM,0);
69     if (sock < 0)
70         SENF_THROW_SYSTEM_EXCEPTION("");
71     fd(sock);
72 }
73
74 prefix_ void
75 senf::UDPv6SocketProtocol::init_client(INet6SocketAddress const & address)
76     const
77 {
78     init_client();
79     clientHandle().bind(address);
80 }
81
82 ///////////////////////////////cc.e////////////////////////////////////////
83 #undef prefix_
84 //#include "UDPSocketHandle.mpp"
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // fill-column: 100
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // comment-column: 40
95 // End: