2019-06-18 07:54:42 +00:00
|
|
|
#ifndef PARSEFILE_H_
|
|
|
|
#define PARSEFILE_H_
|
|
|
|
|
|
|
|
#define IFCONFIG_PATH "/etc/network/interfaces"
|
2019-06-28 10:36:24 +00:00
|
|
|
#define IF_BUFF_LEN 128
|
2019-06-18 07:54:42 +00:00
|
|
|
|
|
|
|
void set_if_config(char *if_name, char *conf_name, char *conf_buff);
|
|
|
|
void del_if_config(char *if_name, char *conf_buff);
|
|
|
|
|
|
|
|
#endif
|