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
|
|
|
|
2019-07-03 02:44:56 +00:00
|
|
|
void ip_conf_file_set(char *if_name, char *conf_name, char *conf_buff);
|
|
|
|
void ip_conf_file_del(char *if_name, char *conf_buff);
|
2019-06-18 07:54:42 +00:00
|
|
|
|
|
|
|
#endif
|