Socket/Protocols: Move incorrectly placed members from AddressableBSDSocketProtocol...
[senf.git] / Socket / Protocols / BSDSocketProtocol.cc
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 BSDSocketProtocol non-inline non-template implementation */
25
26 #include "BSDSocketProtocol.hh"
27 //#include "BSDSocketProtocol.ih"
28
29 // Custom includes
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <sys/ioctl.h>
33 #include "../../Socket/SocketHandle.hh"
34
35 //#include "BSDSocketProtocol.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ std::pair<bool,unsigned> senf::BSDSocketProtocol::linger()
40     const
41 {
42     struct linger ling;
43     socklen_t len = sizeof(ling);
44     ::memset(&ling,sizeof(ling),0);
45     if (::getsockopt(fd(),SOL_SOCKET,SO_LINGER,&ling,&len) < 0)
46         throw SystemException();
47     return std::make_pair(ling.l_onoff, ling.l_linger);
48 }
49
50 prefix_ void senf::BSDSocketProtocol::linger(bool enable, unsigned timeout)
51     const
52 {
53     struct linger ling;
54     ling.l_onoff = enable;
55     ling.l_linger = timeout;
56     if (::setsockopt(fd(),SOL_SOCKET,SO_LINGER,&ling,sizeof(ling)) < 0)
57         throw SystemException();
58 }
59
60 prefix_ boost::uint8_t senf::BSDSocketProtocol::priority()
61     const
62 {
63     int value;
64     socklen_t len (sizeof(value));
65     if (::getsockopt(fd(),SOL_SOCKET,SO_PRIORITY,&value,&len) < 0)
66         throw SystemException();
67     return value;
68 }
69
70 prefix_ void senf::BSDSocketProtocol::priority(boost::uint8_t value)
71     const
72 {
73     int ivalue (value);
74     if (::setsockopt(fd(),SOL_SOCKET,SO_PRIORITY,&ivalue,sizeof(ivalue)) < 0)
75         throw SystemException();
76 }
77
78 prefix_ unsigned senf::BSDSocketProtocol::rcvbuf()
79     const
80 {
81     unsigned size;
82     socklen_t len (sizeof(size));
83     if (::getsockopt(fd(),SOL_SOCKET,SO_RCVBUF,&size,&len) < 0)
84         throw SystemException();
85     // Linux doubles the bufer size on setting the RCVBUF to cater for internal
86     // headers. We fix this up here .. (see lkml FAQ)
87     return size/2;
88 }
89
90 prefix_ void senf::BSDSocketProtocol::rcvbuf(unsigned size)
91     const
92 {
93     if (::setsockopt(fd(),SOL_SOCKET,SO_RCVBUF,&size,sizeof(size)) < 0)
94         throw SystemException();
95 }
96
97 prefix_ unsigned senf::BSDSocketProtocol::sndbuf()
98     const
99 {
100     unsigned size;
101     socklen_t len (sizeof(size));
102     if (::getsockopt(fd(),SOL_SOCKET,SO_SNDBUF,&size,&len) < 0)
103         throw SystemException();
104     // Linux doubles the bufer size on setting the SNDBUF to cater for internal
105     // headers. We fix this up here .. (see lkml FAQ)
106     return size/2;
107 }
108
109 prefix_ void senf::BSDSocketProtocol::sndbuf(unsigned size)
110     const
111 {
112     if (::setsockopt(fd(),SOL_SOCKET,SO_SNDBUF,&size,sizeof(size)) < 0)
113         throw SystemException();
114 }
115
116 ///////////////////////////////////////////////////////////////////////////
117
118 prefix_ bool senf::AddressableBSDSocketProtocol::reuseaddr()
119     const
120 {
121     int value;
122     socklen_t len (sizeof(value));
123     if (::getsockopt(fd(),SOL_SOCKET,SO_REUSEADDR,&value,&len) < 0)
124         throw SystemException();
125     return value;
126 }
127
128 prefix_ void senf::AddressableBSDSocketProtocol::reuseaddr(bool value)
129     const
130 {
131     int ivalue (value);
132     if (::setsockopt(fd(),SOL_SOCKET,SO_REUSEADDR,&ivalue,sizeof(ivalue)) < 0)
133         throw SystemException();
134 }
135
136 /////////////////////////////cc.e////////////////////////////////////////
137 #undef prefix_
138 //#include "BSDSocketProtocol.mpp"
139
140 \f
141 // Local Variables:
142 // mode: c++
143 // fill-column: 100
144 // c-file-style: "senf"
145 // indent-tabs-mode: nil
146 // ispell-local-dictionary: "american"
147 // compile-command: "scons -u test"
148 // comment-column: 40
149 // End: