1f374891debdb7e05abacf389955b8623051048a
[senf.git] / Socket / Protocols / UN / UNDatagramSocketHandle.cc
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum NETwork research (NET)
4 //     David Wagner <david.wagner@fokus.fraunhofer.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief UNDatagramSocketHandle non-inline non-template implementation */
23
24 #include "UNDatagramSocketHandle.hh"
25 //#include "UNDatagramSocketHandle.ih"
26
27 // Custom includes
28 #include <sys/socket.h>
29 #include <sys/types.h>
30 #include <sys/ioctl.h>
31
32 #include "../../../Utils/Exception.hh"
33
34 //#include "UNDatagramSocketHandle.mpp"
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 prefix_ void senf::UNDatagramSocketProtocol::init_client() const
39 {
40     int sock = ::socket(PF_UNIX,SOCK_DGRAM,0);
41     if (sock < 0)
42         throw SystemException(errno);
43     body().fd(sock);
44 }
45
46 prefix_ void senf::UNDatagramSocketProtocol::init_client(UNSocketAddress const & address) const 
47 {
48     init_client();
49     bind(address);
50 }
51
52 prefix_ std::auto_ptr<senf::SocketProtocol> senf::UNDatagramSocketProtocol::clone()
53     const
54 {
55     return std::auto_ptr<SocketProtocol>(new UNDatagramSocketProtocol());
56 }
57
58 ///////////////////////////////cc.e////////////////////////////////////////
59 #undef prefix_
60 //#include "UNDatagramSocketHandle.mpp"
61
62 \f
63 // Local Variables:
64 // mode: c++
65 // fill-column: 100
66 // comment-column: 40
67 // c-file-style: "senf"
68 // indent-tabs-mode: nil
69 // ispell-local-dictionary: "american"
70 // compile-command: "scons -u test"
71 // End: