Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / Protocols / INet / ConnectedUDPSocketHandle.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 ConnectedUDPv4SocketHandle and ConnectedUDPv6SocketHandle non-inline non-template implementation
25  */
26
27 #include "ConnectedUDPSocketHandle.hh"
28 //#include "ConnectedUDPSocketHandle.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 "ConnectedUDPSocketHandle.mpp"
38 #define prefix_
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 // senf::ConnectedUDPv4SocketProtocol
43
44 prefix_ void senf::ConnectedUDPv4SocketProtocol::init_client()
45     const
46 {
47     int sock = ::socket(PF_INET,SOCK_DGRAM,0);
48     if (sock < 0)
49         SENF_THROW_SYSTEM_EXCEPTION("::socket(PF_INET,SOCK_DGRAM,0) failed.");
50     fd(sock);
51 }
52
53 prefix_ void
54 senf::ConnectedUDPv4SocketProtocol::init_client(INet4SocketAddress const & address)
55     const
56 {
57     init_client();
58     clientHandle().connect(address);
59 }
60
61 //-/////////////////////////////////////////////////////////////////////////////////////////////////
62 // senf::ConnectedUDPv6SocketProtocol::
63
64 prefix_ void senf::ConnectedUDPv6SocketProtocol::init_client()
65     const
66 {
67     int sock = ::socket(PF_INET6,SOCK_DGRAM,0);
68     if (sock < 0)
69         SENF_THROW_SYSTEM_EXCEPTION("::socket(PF_INET6,SOCK_DGRAM,0) failed.");
70     fd(sock);
71 }
72
73 prefix_ void
74 senf::ConnectedUDPv6SocketProtocol::init_client(INet6SocketAddress const & address)
75     const
76 {
77     init_client();
78     clientHandle().connect(address);
79 }
80
81 //-/////////////////////////////////////////////////////////////////////////////////////////////////
82 #undef prefix_
83 //#include "ConnectedUDPSocketHandle.mpp"
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // comment-column: 40
94 // End: