documenting copyright correctly
[senf.git] / Socket / Protocols / UN / UNProtocol.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 UNProtocol non-inline non-template implementation */
23
24 #include "UNProtocol.hh"
25 //#include "UNProtocol.ih"
26
27 // Custom includes
28 #include <sys/socket.h>
29 #include "../../../Utils/Exception.hh"
30
31 //#include "UNProtocol.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34 prefix_ void senf::UNProtocol::connect(UNSocketAddress const & address) 
35     const 
36 {
37     if(::connect(body().fd(), address.sockaddr_p(), sizeof(sockaddr_un)) < 0)
38         throw SystemException(errno);
39 }
40
41 prefix_ void senf::UNProtocol::bind(UNSocketAddress const & address) 
42     const 
43 {
44     if(::bind(body().fd(), address.sockaddr_p(), sizeof(sockaddr_un)) < 0)
45         throw SystemException(errno);
46 }
47
48
49
50
51
52 ///////////////////////////////cc.e////////////////////////////////////////
53 #undef prefix_
54 //#include "UNProtocol.mpp"
55
56 \f
57 // Local Variables:
58 // mode: c++
59 // fill-column: 100
60 // comment-column: 40
61 // c-file-style: "senf"
62 // indent-tabs-mode: nil
63 // ispell-local-dictionary: "american"
64 // compile-command: "scons -u test"
65 // End: