basic implementation of Unix Domain Sockets, for now Datagram only. docs mostly missing.
[senf.git] / Socket / Protocols / UN / UNProtocol.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 UNProtocol non-inline non-template implementation */
22
23 #include "UNProtocol.hh"
24 //#include "UNProtocol.ih"
25
26 // Custom includes
27 #include <sys/socket.h>
28 #include "../../../Utils/Exception.hh"
29
30 //#include "UNProtocol.mpp"
31 #define prefix_
32 ///////////////////////////////cc.p////////////////////////////////////////
33 prefix_ void senf::UNProtocol::connect(UNSocketAddress const & address) 
34     const 
35 {
36     if(::connect(body().fd(),  address.sockaddr_p(), sizeof(address.sockaddr())) < 0)
37         throw SystemException(errno);
38 }
39
40 prefix_ void senf::UNProtocol::bind(UNSocketAddress const & address) 
41     const 
42 {
43     if(::bind(body().fd(), address.sockaddr_p(), sizeof(address.sockaddr())) < 0)
44         throw SystemException(errno);
45 }
46
47
48
49
50
51 ///////////////////////////////cc.e////////////////////////////////////////
52 #undef prefix_
53 //#include "UNProtocol.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: