blob: 485265c4395132342affbf3779da36f9bcf274c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*
Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
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
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef _H_INTERFACES
#define _H_INTERFACES
#include <list>
#include <string>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <ifaddrs.h>
using namespace std;
class t_interface {
public:
string name; // interface name, eg. eth0
struct in_addr address; // interface IP address
struct in_addr netmask; // interface netmask
t_interface(string _name);
// Get string representation of IP address
string get_ip_addr(void) const;
string get_ip_netmask(void) const;
};
// Return a list of all interfaces that are UP
// If include_loopback == true, then the loopback interface is returned as well.
list<t_interface> *get_interfaces(bool include_loopback = false);
// Check if an interface with a certain IP address exists
bool exists_interface(const string &hostname);
// Check if an interface exists and return its IP address
bool exists_interface_dev(const string &devname, string &ip_address);
#endif
|