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