X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=netifd.h;h=e565423ab774f862ea1de398d6ba56e0155ebf90;hp=1f64555d46f638712394f9049a6b810334d12169;hb=HEAD;hpb=c8e879595400e3485b5a075797290a1061c0b04f;ds=sidebyside diff --git a/netifd.h b/netifd.h index 1f64555..e565423 100644 --- a/netifd.h +++ b/netifd.h @@ -30,10 +30,12 @@ #ifdef DUMMY_MODE #define DEFAULT_MAIN_PATH "./examples" +#define DEFAULT_CONFIG_PATH "./config" #define DEFAULT_HOTPLUG_PATH "./examples/hotplug-cmd" #define DEFAULT_RESOLV_CONF "./tmp/resolv.conf" #else #define DEFAULT_MAIN_PATH "/lib/netifd" +#define DEFAULT_CONFIG_PATH NULL /* use the default set in libuci */ #define DEFAULT_HOTPLUG_PATH "/sbin/hotplug-call" #define DEFAULT_RESOLV_CONF "/tmp/resolv.conf.auto" #endif @@ -54,6 +56,7 @@ enum { DEBUG_SYSTEM = 0, DEBUG_DEVICE = 1, DEBUG_INTERFACE = 2, + DEBUG_WIRELESS = 3, }; #ifdef DEBUG @@ -93,7 +96,8 @@ struct device; struct interface; extern const char *main_path; +extern const char *config_path; void netifd_restart(void); -void netifd_reload(void); +int netifd_reload(void); #endif