X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-config.h;h=c502dbc106cf846da4782594962b92c7aef06992;hb=d0b0b6fe77b8ea06bac2830baa9008eefe1917ba;hp=43b550dbbb31790bfb225b1df7b086ba9586721f;hpb=0686ada403014fa7a27ca3e01a6b025a27fe8c16;p=src%2Fapp-framework-binder.git diff --git a/src/afb-config.h b/src/afb-config.h index 43b550db..c502dbc1 100644 --- a/src/afb-config.h +++ b/src/afb-config.h @@ -43,19 +43,27 @@ struct afb_config { struct afb_config_list *ws_servers; struct afb_config_list *so_bindings; struct afb_config_list *ldpaths; + struct afb_config_list *weak_ldpaths; + struct afb_config_list *calls; char **exec; + /* integers */ int httpdPort; - int background; // run in backround mode - int readyfd; // a #fd to signal when ready to serve int cacheTimeout; int apiTimeout; int cntxTimeout; // Client Session Context timeout int nbSessionMax; // max count of sessions int mode; // mode of listening int tracereq; - int noHttpd; + int traceditf; + int tracesvc; + int traceevt; + + /* booleans */ + unsigned no_ldpaths: 1; /* disable default ldpaths */ + unsigned noHttpd: 1; + unsigned background: 1; /* run in backround mode */ }; extern struct afb_config *afb_config_parse_arguments(int argc, char **argv);