Packet/DefaultBundle: Make IPv6PacketparserExtension_Fragment reserver fields private
[senf.git] / Socket / NetdeviceController.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 NetdeviceController public header
25  */
26
27 #ifndef HH_SENF_Socket_NetdeviceController_
28 #define HH_SENF_Socket_NetdeviceController_ 1
29
30 // Custom includes
31 #include <string>
32 #include "Protocols/Raw/MACAddress.hh"
33
34
35 //#include "NetdeviceController.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 struct ifreq;
39
40 namespace senf {
41
42     /** \brief Netdevice Controller
43
44         This controller provides an interface which can be used to configure network
45         devices. Note, that some setting members are privileged operations.
46
47         \see manual page netdevice(7) for more informations.
48      */
49     class NetdeviceController
50     {
51     public:
52         NetdeviceController(std::string const & interface_name);
53                                         ///< Construct a new controller for the given interface name.
54         NetdeviceController(int interface_index);
55                                         ///< Construct a new controller for the given interface index.
56         virtual ~NetdeviceController();
57
58         int interfaceIndex() const;     ///< return the interface index
59         MACAddress hardwareAddress() const;
60                                         ///< return hardware address
61         void hardwareAddress(const MACAddress &newAddress);
62                                         ///< set hardware address
63                                         /**< Changes the hardware address of the interface.
64                                              Note, that setting the hardware address is a privileged
65                                              operation. It is only allowed when the interface is not
66                                              up. If the interface is up, this call will cause an
67                                              SystemException to be thrown. */
68         std::string interfaceName() const;
69                                         ///< return interface name
70         void interfaceName(const std::string &newName);
71                                         ///< set interface name
72                                         /**< Changes the name of the interface.
73                                              Note, that setting the name is a privileged operation. 
74                                              It is only allowed when the interface is not up. If 
75                                              the interface is up, this call will cause an 
76                                              SystemException to be thrown. */
77
78         int mtu() const;                ///< return the Maximum Transmission Unit
79         void mtu(int new_mtu);          ///< set the Maximum Transmission Unit
80                                         /**< Set the MTU (Maximum Transfer Unit) of the device.
81                                              Note, that this is a privileged operation.
82                                              Setting the MTU to too small values may cause kernel 
83                                              crashes. */
84
85         bool promisc() const;           ///< return \c true if interface is in promiscuous mode
86         void promisc(bool mode);        ///< enable/disable promiscuous mode of the interface
87                                         /**< Note, that this is a privileged operation. */
88
89         bool isUp() const;              ///< return \c true if interface is up
90         void up();                      ///< ifconfig up interface
91         void down();                    ///< ifconfig down interface
92
93     private:
94         void openSocket();
95         void doIoctl(ifreq& ifr, int request) const;
96         void ifrName(ifreq& ifr) const;
97         int sockfd_;
98         int ifindex_;
99     };
100
101 }
102
103 ///////////////////////////////hh.e////////////////////////////////////////
104 //#include "NetdeviceController.cci"
105 //#include "NetdeviceController.ct"
106 //#include "NetdeviceController.cti"
107 //#include "NetdeviceController.mpp"
108 #endif
109
110
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // c-file-style: "senf"
115 // indent-tabs-mode: nil
116 // ispell-local-dictionary: "american"
117 // compile-command: "scons -u test"
118 // comment-column: 40
119 // End: