2019-08-07 06:36:23 +00:00
|
|
|
#include "rpc.h"
|
2019-08-08 03:57:20 +00:00
|
|
|
#include "parsefile.h"
|
2019-08-07 03:49:31 +00:00
|
|
|
#include "netconfig.h"
|
|
|
|
|
|
|
|
|
2019-08-07 06:55:53 +00:00
|
|
|
ret_code net_main()
|
2019-08-07 03:49:31 +00:00
|
|
|
{
|
2019-08-09 03:19:03 +00:00
|
|
|
|
2019-08-08 03:57:20 +00:00
|
|
|
br_bridge_init();
|
2019-08-09 03:19:03 +00:00
|
|
|
|
|
|
|
/* 初始化/etc/network/interfaces配置文件 */
|
|
|
|
if_num_init();
|
2019-08-07 03:49:31 +00:00
|
|
|
}
|
|
|
|
|