9 lines
206 B
C++
9 lines
206 B
C++
#include <string>
|
|
|
|
#ifndef IF_FUNCTIONS_H
|
|
#define IF_FUNCTIONS_H
|
|
|
|
std::string getInterfaceIP(const std::string &interfaceName);
|
|
int get_interface_index(const char *interface_name);
|
|
|
|
#endif // IF_FUNCTIONS_H
|