config option

master
Sergey Dorofeev 13 years ago
parent d8d3e4d17b
commit 47267a1af6

@ -106,6 +106,8 @@ nodial_flag /etc/nodial
inbound_directory (Protected) /var/spool/fido/bt/pin
inbound_directory /var/spool/fido/bt/in
split_inbound yes
#
# Path to your 4D outbound (use zone as extension)
#

@ -449,6 +449,8 @@ int main(int argc, char *argv[], char *envp[])
(void)debug_setfilename(log_getfilename(LOG_FILE_DEBUG));
#endif
printf("split_inb: %s\n", conf_boolean(cf_split_inbound)?"yes":"no");
if( opts.daemon )
rc = bforce_daemon(&opts);
else if( role )

@ -174,6 +174,7 @@ s_conf_entry bforce_config[BFORCE_NUMBER_OF_KEYWORDS+1] = {
#ifdef DEBUG
CONF_KEY(debug_file, CT_STRING),
CONF_KEY(debug_level, CT_DEBLEVEL),
CONF_KEY(split_inbound, CT_BOOLEAN),
#endif
CONF_END()
};

1568
source/config.guess vendored

File diff suppressed because it is too large Load Diff

1031
source/config.sub vendored

File diff suppressed because it is too large Load Diff

@ -270,6 +270,7 @@ typedef enum {
cf_debug_file,
cf_debug_level,
#endif
cf_split_inbound,
BFORCE_NUMBER_OF_KEYWORDS
} bforce_config_keyword;

Loading…
Cancel
Save