374840bbf3af7d0338c1214352afd7dd9d9ceefa
[senf.git] / senf / Socket / Protocols / Raw / LLAddressing.cci
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief LLSocketAddress and LLAddressingPolicy  inline non-template implementation
25  */
26
27 // Custom includes
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30
31 #define prefix_ inline
32 ///////////////////////////////cci.p///////////////////////////////////////
33
34 prefix_ void senf::LLSocketAddress::address(MACAddress const & addr)
35 {
36     std::copy(addr.begin(), addr.end(),&addr_.sll_addr[0]);
37 }
38
39 prefix_ senf::LLSocketAddress::LLSocketAddress()
40     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
41 {}
42
43 prefix_ void senf::LLSocketAddress::protocol(unsigned prot)
44 {
45     addr_.sll_protocol = htons(prot);
46 }
47
48 prefix_ senf::LLSocketAddress::LLSocketAddress(unsigned prot, std::string const & iface)
49     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
50 {
51     protocol(prot);
52     interface(iface);
53 }
54
55 prefix_ senf::LLSocketAddress::LLSocketAddress(std::string const &iface)
56     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
57 {
58     interface(iface);
59 }
60
61 prefix_ senf::LLSocketAddress::LLSocketAddress(MACAddress const & addr,
62                                                std::string const & iface)
63     : BSDSocketAddress (sizeof(sockaddr_ll), AF_PACKET)
64 {
65     address(addr);
66     interface(iface);
67 }
68
69 prefix_ senf::LLSocketAddress::LLSocketAddress(const LLSocketAddress& other)
70     : BSDSocketAddress (other)
71 {}
72
73 prefix_ senf::LLSocketAddress& senf::LLSocketAddress::operator=(const LLSocketAddress& other)
74 {
75     BSDSocketAddress::operator=(other);
76     return *this;
77 }
78
79 prefix_ unsigned senf::LLSocketAddress::protocol()
80     const
81 {
82     return ntohs(addr_.sll_protocol);
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 ///////////////////////////////cci.e///////////////////////////////////////
104 #undef prefix_
105
106 \f
107 // Local Variables:
108 // mode: c++
109 // fill-column: 100
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // comment-column: 40
115 // End: