diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-23 22:51:14 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-23 22:51:14 +0100 |
commit | c6853a55ca911415e6851de27621b7022a665933 (patch) | |
tree | 761dba0f62a74e8875e4aa8b6d7d54bff4ace3c3 /include | |
parent | 97cfff753ccb7e5739ebe53e43a5af29dc0f6577 (diff) |
Implement --ldpaths=dir1:dir2:dir...
Diffstat (limited to 'include')
-rw-r--r-- | include/local-def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/local-def.h b/include/local-def.h index 843805f8..d278dc47 100644 --- a/include/local-def.h +++ b/include/local-def.h @@ -63,6 +63,7 @@ #define DEFLT_CACHE_TIMEOUT 100000 // default Static File Chache [Client Side Cache 100000~=1day] #define DEFLT_AUTH_TOKEN NULL // expect for debug should == NULL #define DEFLT_HTTP_TIMEOUT 15 // Max MibMicroHttp timeout +#define AFB_MAX_PLUGINS 20 // Max number of plugins for a given binder typedef int BOOL; #ifndef FALSE @@ -170,7 +171,7 @@ typedef struct { int localhostOnly; int httpdPort; char *smack; // smack label - char *plugins; // list of requested plugins + char *ldpaths; // list of plugins directories char *rootdir; // base dir for httpd file download char *rootbase; // Angular HTML5 base URL char *rootapi; // Base URL for REST APIs |