704944769f1db77770a86fa36d509d9678bc3d3d
[senf.git] / Socket / Protocols / Raw / TunTapSocketHandle.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 
25     
26  */
27
28 #include "TunTapSocketHandle.hh"
29 //#include "TunTapSocketHandle.ih"
30
31 // Custom includes
32 #include <sys/ioctl.h>
33 #include <fcntl.h>
34 #include <net/if.h>
35 #include <linux/if_tun.h>
36 #include <errno.h>
37
38 //#include "TunTapSocketHandle.mpp"
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 prefix_ void senf::TapProtocol::init_client() 
43     const
44 {
45     init_client(std::string());
46 }
47
48 prefix_ void senf::TapProtocol::init_client(std::string const & interface_name, bool const NO_PI) 
49     const
50 {
51     int f;
52     if ( (f = ::open("/dev/net/tun", O_RDWR)) < 0 )
53         throwErrno();
54     struct ifreq ifr;
55     ::memset( &ifr, 0, sizeof(ifr));
56     ifr.ifr_flags = IFF_TAP;
57     if (NO_PI)
58         ifr.ifr_flags |= IFF_NO_PI;
59     interface_name.copy( ifr.ifr_name, IFNAMSIZ);
60     if (::ioctl(f, TUNSETIFF, (void *) &ifr) < 0 )
61         throwErrno();
62     fd(f);
63 }
64
65 prefix_ unsigned senf::TapProtocol::available()
66   const
67 {
68   if (! fh().readable())
69       return 0;
70   ssize_t l = ::recv(fd(),0,0,MSG_PEEK | MSG_TRUNC);
71   if (l < 0)
72       //throwErrno();
73       return 1588;
74   return l;
75 }
76
77 /*
78 #include <linux/sockios.h> // for SIOCINQ / SIOCOUTQ
79
80 prefix_ unsigned senf::TapProtocol::available()
81   const
82 {
83   if (! body().readable())
84       return 0;
85   int n;
86   if (::ioctl(body().fd(),SIOCINQ,&n) < 0)
87       throwErrno();
88   return n;
89 }
90 */
91
92 prefix_ bool senf::TapProtocol::eof()
93     const
94 {
95     return false;
96 }
97
98 ///////////////////////////////cc.e////////////////////////////////////////
99 #undef prefix_
100 //#include "TunTapSocketHandle.mpp"
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // fill-column: 100
106 // c-file-style: "senf"
107 // indent-tabs-mode: nil
108 // ispell-local-dictionary: "american"
109 // compile-command: "scons -u test"
110 // comment-column: 40
111 // End: