UNAddressing.cci
Go to the documentation of this file.
1 //
2 // Copyright (c) 2020 Fraunhofer Institute for Applied Information Technology (FIT)
3 // Network Research Group (NET)
4 // Schloss Birlinghoven, 53754 Sankt Augustin, GERMANY
5 // Contact: support@wiback.org
6 //
7 // This file is part of the SENF code tree.
8 // It is licensed under the 3-clause BSD License (aka New BSD License).
9 // See LICENSE.txt in the top level directory for details or visit
10 // https://opensource.org/licenses/BSD-3-Clause
11 //
12 
13 
14 /** \file
15  \brief UNAddressing inline non-template implementation */
16 
17 //#include "UNAddressing.ih"
18 
19 // Custom includes
20 
21 #define prefix_ inline
22 //-/////////////////////////////////////////////////////////////////////////////////////////////////
23 
24 //-/////////////////////////////////////////////////////////////////////////////////////////////////
25 // senf::UNSocketAddress
26 
27 prefix_ senf::UNSocketAddress::UNSocketAddress()
28  : BSDSocketAddress (sizeof(sockaddr_un), AF_UNIX)
29 {}
30 
31 prefix_ senf::UNSocketAddress::UNSocketAddress(std::string const & p)
32  : BSDSocketAddress (sizeof(sockaddr_un), AF_UNIX)
33 {
34  path(p);
35 }
36 
37 prefix_ senf::UNSocketAddress::UNSocketAddress(UNSocketAddress const & other)
38  : BSDSocketAddress (other)
39 {}
40 
41 prefix_ senf::UNSocketAddress& senf::UNSocketAddress::operator=(UNSocketAddress const & other)
42 {
43  BSDSocketAddress::operator=(other);
44  return *this;
45 }
46 
47 prefix_ std::string senf::UNSocketAddress::path()
48  const
49 {
50  return std::string(addr_.sun_path, socklen()-sizeof(short));
51 }
52 
53 prefix_ std::ostream & senf::operator<<(std::ostream & os, UNSocketAddress const & addr)
54 {
55  os << addr.path();
56  return os;
57 }
58 
59 //-/////////////////////////////////////////////////////////////////////////////////////////////////
60 #undef prefix_
61 
62 
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: