3c88242d69b28924b4f4613fa1293075bd2d340e
[senf.git] / senf / Socket / Protocols / INet / TCPSocketProtocol.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 TCPSocketProtocol non-inline non-template implementation
25  */
26
27 #include "TCPSocketProtocol.hh"
28 //#include "TCPSocketProtocol.ih"
29
30 // Custom includes
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #include <netinet/tcp.h>
34 #include <sys/ioctl.h>
35 #include <linux/sockios.h> // for SIOCINQ / SIOCOUTQ
36 #include "../../../Socket/SocketHandle.hh"
37
38 //#include "TCPSocketProtocol.mpp"
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 prefix_ bool senf::TCPSocketProtocol::nodelay()
43     const
44 {
45     int value;
46     socklen_t len (sizeof(value));
47     if (::getsockopt(fd(),SOL_TCP,TCP_NODELAY,&value,&len) < 0)
48         SENF_THROW_SYSTEM_EXCEPTION("");
49     return value;
50 }
51
52 prefix_ void senf::TCPSocketProtocol::nodelay(bool value)
53     const
54 {
55     int ivalue (value);
56     if (::setsockopt(fd(),SOL_TCP,TCP_NODELAY,&ivalue,sizeof(ivalue)) < 0)
57         SENF_THROW_SYSTEM_EXCEPTION("");
58 }
59
60 prefix_ unsigned senf::TCPSocketProtocol::siocinq()
61     const
62 {
63     int n;
64     if (::ioctl(fd(),SIOCINQ,&n) < 0)
65         SENF_THROW_SYSTEM_EXCEPTION("");
66     return n;
67 }
68
69 prefix_ unsigned senf::TCPSocketProtocol::siocoutq()
70     const
71 {
72     int n;
73     if (::ioctl(fd(),SIOCOUTQ,&n) < 0)
74         SENF_THROW_SYSTEM_EXCEPTION("");
75     return n;
76 }
77
78 prefix_ void senf::TCPSocketProtocol::shutdown(ShutType type)
79     const
80 {
81     if (::shutdown(fd(), type) < 0)
82         SENF_THROW_SYSTEM_EXCEPTION("::shutdown()");
83 }
84
85 prefix_ void senf::TCPSocketProtocol::close()
86 {
87     shutdown(ShutRDWR);
88     INetSocketProtocol::close();
89 }
90
91 prefix_ unsigned senf::TCPSocketProtocol::available()
92     const
93 {
94     return siocinq();
95 }
96
97 prefix_ bool senf::TCPSocketProtocol::eof()
98     const
99 {
100     return fh().readable() && available()==0;
101 }
102
103
104 ///////////////////////////////cc.e////////////////////////////////////////
105 #undef prefix_
106 //#include "TCPSocketProtocol.mpp"
107
108 \f
109 // Local Variables:
110 // mode: c++
111 // fill-column: 100
112 // c-file-style: "senf"
113 // indent-tabs-mode: nil
114 // ispell-local-dictionary: "american"
115 // compile-command: "scons -u test"
116 // comment-column: 40
117 // End: