Merged revisions 570-572,574-575,578-579,581-595,598-611 via svnmerge from
[senf.git] / Socket / Protocols / Raw / TunTapSocketHandle.hh
1 // $Id:PacketSocketHandle.hh 218 2007-03-20 14:39:32Z tho $
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 PacketProtocol and PacketSocketHandle public header
25
26     \todo Implement global promisc() helper based on ioctl() interface.
27  */
28
29 #ifndef HH_TunTapSocketHandle_
30 #define HH_TunTapSocketHandle_ 1
31
32 // Custom includes
33 #include "../../../Socket/SocketPolicy.hh"
34 #include "../../../Socket/SocketProtocol.hh"
35 #include "../../../Socket/ProtocolClientSocketHandle.hh"
36 #include "../../../Socket/FramingPolicy.hh"
37 #include "../../../Socket/CommunicationPolicy.hh"
38 #include "../../../Socket/ReadWritePolicy.hh"
39 #include "../../../Socket/Protocols/BSDSocketProtocol.hh"
40 #include "LLAddressing.hh"
41
42 //#include "TunTapSocketHandle.mpp"
43 //#include "TunTapSocketHandle.ih"
44 ///////////////////////////////hh.p////////////////////////////////////////
45
46 namespace senf {
47
48     /// \addtogroup concrete_protocol_group
49     /// @{
50
51     typedef MakeSocketPolicy<
52         NoAddressingPolicy,
53         DatagramFramingPolicy,
54         ConnectedCommunicationPolicy,
55         ReadablePolicy,
56         WriteablePolicy
57         >::policy Tap_Policy;        ///< Policy for TAP
58
59     /** \brief TAP
60
61         \todo document me
62
63         \par Socket Handle typedefs:
64
65
66         \par Policy Interface:
67
68
69         \par Address Type:
70
71
72         This class is utilized as the protocol class of the ProtocolClientSocketHandle via the
73         Socket Handle typedefs above.
74      */
75     class TapProtocol
76         : public ConcreteSocketProtocol<Tap_Policy>,
77           public BSDSocketProtocol,
78           public senf::pool_alloc_mixin<TapProtocol>
79     {
80     public:
81         ///\name Constructors
82         ///@{
83         void init_client() const;
84                                         ///< Create TAP socket
85                                         /**< \todo document me */
86                                         /**< \note This member is implicitly called from the
87                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
88                                              constructor */
89         void init_client(std::string const & interface_name, bool const NO_PI=true) const;
90                                         ///< Create TAP socket
91                                         /**< \todo document me
92                                              \param[in] address remote address to connect to */
93                                         /**< \note This member is implicitly called from the
94                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
95                                              constructor */
96         
97         ///@}
98
99         ///\name Abstract Interface Implementation
100         ///@{
101
102         std::auto_ptr<SocketProtocol> clone() const;
103         unsigned available() const;
104         bool eof() const;
105
106         ///@}
107     };
108
109     typedef ProtocolClientSocketHandle<TapProtocol> TapSocketHandle;
110                                         ///< SocketHandle of TapProtocol
111                                         /**< \related TapPrototol */
112
113     /// @}
114 }
115
116 ///////////////////////////////hh.e////////////////////////////////////////
117 //#include "TunTapSocketHandle.cci"
118 //#include "TunTapSocketHandle.ct"
119 //#include "TunTapSocketHandle.cti"
120 //#include "TunTapSocketHandle.mpp"
121 #endif
122
123 \f
124 // Local Variables:
125 // mode: c++
126 // fill-column: 100
127 // c-file-style: "senf"
128 // indent-tabs-mode: nil
129 // ispell-local-dictionary: "american"
130 // compile-command: "scons -u test"
131 // comment-column: 40
132 // End: