X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FNetdeviceController.hh;h=cabf6a448743dc2530676cf2afff0053965fec23;hb=7baaacae27c02c86ceda5c7ee41d3172d1e23ffa;hp=757aac5b3be24c850701fddfe9dbbca88dd6664d;hpb=5473ff920615fdd6d0a45b97baefc9eafe619e8b;p=senf.git diff --git a/Socket/NetdeviceController.hh b/Socket/NetdeviceController.hh index 757aac5..cabf6a4 100644 --- a/Socket/NetdeviceController.hh +++ b/Socket/NetdeviceController.hh @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Thorsten Horstmann +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Thorsten Horstmann // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -41,6 +41,7 @@ namespace senf { /** \brief NetdeviceController \todo document me + \todo Add 'promisc' member to enable/disable promiscuous mode */ class NetdeviceController { @@ -49,16 +50,21 @@ namespace senf { NetdeviceController(int interface_index); virtual ~NetdeviceController(); - MACAddress hardwareAddress(); - std::string interfaceName(); - int interfaceIndex(); - int mtu(); - void mtu(int new_mtu); + int interfaceIndex() const; ///< return the interface index + MACAddress hardwareAddress() const; ///< return hardware address + void hardwareAddress(const MACAddress &newAddress); ///< set hardware address + + std::string interfaceName() const; ///< return interface name + void interfaceName(const std::string &newName) const; ///< set interface name + + int mtu() const; ///< return the Maximum Transmission Unit + void mtu(int new_mtu) const; //< set the Maximum Transmission Unit + private: void openSocket(); - void doIoctl(ifreq& ifr, int request); - void ifrName(ifreq& ifr); + void doIoctl(ifreq& ifr, int request) const; + void ifrName(ifreq& ifr) const; int sockfd_; int ifindex_; };