b989dae33846180670e839b8182662532ff1f843
[senf.git] / senf / Socket / Protocols / INet / INetSocketProtocol.hh
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 IPv[46]Protocol public header
25
26     \todo what about OOB data?
27
28     \todo Implement IP_RECVERR / MSG_ERRQUEUE. This should be placed
29     into an additional protocol facet since IP_RECVERR is only valid
30     for SOCK_DGRAM (UDP) and not SOCK_STREAM (TCP) sockets
31  */
32
33 #ifndef HH_SENF_Socket_Protocols_INet_INetSocketProtocol_
34 #define HH_SENF_Socket_Protocols_INet_INetSocketProtocol_ 1
35
36 // Custom includes
37 #include <senf/Socket/SocketProtocol.hh>
38
39 //#include "INetSocketProtocol.mpp"
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41
42 namespace senf {
43
44     /// \addtogroup protocol_facets_group
45     //\{
46
47     /** \brief Generic addressing type independent INet protocol facet
48      */
49     class INetSocketProtocol
50         : public virtual SocketProtocol
51     {
52     public:
53         void bindInterface(std::string const & iface) const;
54                                         ///< Bind socket to specific interface
55                                         /**< When a socket is bound to an interface, it will only
56                                              receive data received on that interface. If the
57                                              interface name is empty, the binding is removed.
58
59                                              \param[in] iface name of interface to bind to or empty
60                                                  to remove binding
61
62                                              \implementation Sets the SO_BINDTODEVICE socket option
63                                           */
64         std::string bindInterface();    ///< Get bound interface
65                                         /**< Returns the interface, the socket is currently bound
66                                              to. Returns the empty string, if not bound to any
67                                              interface.
68                                              \returns Bound interface name */
69     };
70
71     //\}
72
73 }
74
75 //-/////////////////////////////////////////////////////////////////////////////////////////////////
76 //#include "INetSocketProtocol.cci"
77 //#include "INetSocketProtocol.ct"
78 //#include "INetSocketProtocol.cti"
79 #endif
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // c-file-style: "senf"
86 // indent-tabs-mode: nil
87 // ispell-local-dictionary: "american"
88 // compile-command: "scons -u test"
89 // comment-column: 40
90 // End: