switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Socket / Protocols / Raw / LLAddressing.cci
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief LLSocketAddress and LLAddressingPolicy  inline non-template implementation
30  */
31
32 // Custom includes
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35
36 #define prefix_ inline
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38
39 prefix_ senf::LLSocketAddress::LLSocketAddress()
40     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
41 {}
42
43 prefix_ senf::LLSocketAddress::LLSocketAddress(unsigned prot, std::string const & iface)
44     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
45 {
46     protocol(prot);
47     interface(iface);
48 }
49
50 prefix_ senf::LLSocketAddress::LLSocketAddress(std::string const &iface)
51     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
52 {
53     interface(iface);
54 }
55
56 prefix_ senf::LLSocketAddress::LLSocketAddress(MACAddress const & addr,
57                                                std::string const & iface)
58     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
59 {
60     address(addr);
61     interface(iface);
62 }
63
64 prefix_ senf::LLSocketAddress::LLSocketAddress(const LLSocketAddress& other)
65     : BSDSocketAddress (other)
66 {}
67
68 prefix_ senf::LLSocketAddress& senf::LLSocketAddress::operator=(const LLSocketAddress& other)
69 {
70     BSDSocketAddress::operator=(other);
71     return *this;
72 }
73
74 prefix_ unsigned senf::LLSocketAddress::protocol()
75     const
76 {
77     return ntohs(addr_.sll_protocol);
78 }
79
80 prefix_ void senf::LLSocketAddress::protocol(unsigned prot)
81 {
82     addr_.sll_protocol = htons(prot);
83 }
84
85 prefix_ unsigned senf::LLSocketAddress::arptype()
86     const
87 {
88     return ntohs(addr_.sll_hatype);
89 }
90
91 prefix_ senf::LLSocketAddress::PktType senf::LLSocketAddress::pkttype()
92     const
93 {
94     return PktType(ntohs(addr_.sll_pkttype));
95 }
96
97 prefix_ senf::MACAddress senf::LLSocketAddress::address()
98     const
99 {
100     return MACAddress::from_data(&addr_.sll_addr[0]);
101 }
102
103 prefix_ void senf::LLSocketAddress::address(MACAddress const & addr)
104 {
105     std::copy(addr.begin(), addr.end(), &addr_.sll_addr[0]);
106 }
107
108 //-/////////////////////////////////////////////////////////////////////////////////////////////////
109 #undef prefix_
110
111 \f
112 // Local Variables:
113 // mode: c++
114 // fill-column: 100
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // comment-column: 40
120 // End: