c0983b92865231a680f1128fdc2d034f1d63fd49
[senf.git] / Socket / BufferingPolicy.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 BufferingPolicy non-inline non-template implementation
25  */
26
27 #include "BufferingPolicy.hh"
28 //#include "BufferingPolicy.ih"
29
30 // Custom includes
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <errno.h>
34 #include "../Utils/Exception.hh"
35
36 //#include "BufferingPolicy.mpp"
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 prefix_ unsigned senf::SocketBufferingPolicy::rcvbuf(FileHandle handle)
41 {
42     unsigned size;
43     socklen_t len (sizeof(size));
44     if (::getsockopt(handle.fd(),SOL_SOCKET,SO_RCVBUF,&size,&len) < 0)
45         throw SystemException(errno);
46     // Linux doubles the bufer size on setting the RCVBUF to cater for internal
47     // headers. We fix this up here .. (see lkml FAQ)
48     return size/2;
49 }
50
51 prefix_ void senf::SocketBufferingPolicy::rcvbuf(FileHandle handle, unsigned size)
52 {
53     if (::setsockopt(handle.fd(),SOL_SOCKET,SO_RCVBUF,&size,sizeof(size)) < 0)
54         throw SystemException(errno);
55 }
56
57 prefix_ unsigned senf::SocketBufferingPolicy::sndbuf(FileHandle handle)
58 {
59     unsigned size;
60     socklen_t len (sizeof(size));
61     if (::getsockopt(handle.fd(),SOL_SOCKET,SO_SNDBUF,&size,&len) < 0)
62         throw SystemException(errno);
63     // Linux doubles the bufer size on setting the SNDBUF to cater for internal
64     // headers. We fix this up here .. (see lkml FAQ)
65     return size/2;
66
67 }
68
69 prefix_ void senf::SocketBufferingPolicy::sndbuf(FileHandle handle, unsigned size)
70 {
71     if (::setsockopt(handle.fd(),SOL_SOCKET,SO_SNDBUF,&size,sizeof(size)) < 0)
72         throw SystemException(errno);
73 }
74
75 ///////////////////////////////cc.e////////////////////////////////////////
76 #undef prefix_
77 //#include "BufferingPolicy.mpp"
78
79 \f
80 // Local Variables:
81 // mode: c++
82 // fill-column: 100
83 // c-file-style: "senf"
84 // indent-tabs-mode: nil
85 // ispell-local-dictionary: "american"
86 // compile-command: "scons -u test"
87 // comment-column: 40
88 // End: