X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=netifd.h;h=5a908587efafeec1ce5640d219d52e6b08c37a91;hp=befa2ccb331985e11f18c62d2726a8d1843fe1c7;hb=9d8dd091f8f336b111364ed211165b5ec9842a24;hpb=fabdd4fc5c7354e897f91e96e734f584776736c7 diff --git a/netifd.h b/netifd.h index befa2cc..5a90858 100644 --- a/netifd.h +++ b/netifd.h @@ -29,11 +29,13 @@ #include "utils.h" #ifdef DUMMY_MODE -#define DEFAULT_MAIN_PATH "./dummy" -#define DEFAULT_HOTPLUG_PATH "./scripts/hotplug-cmd" +#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,6 +96,7 @@ struct device; struct interface; extern const char *main_path; +extern const char *config_path; void netifd_restart(void); void netifd_reload(void);