Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00028 #include "../../cfg/cfg.h"
00029 #include "../../parser/msg_parser.h"
00030
00031 #include "config.h"
00032
00033 struct cfg_group_dispatcher default_dispatcher_cfg = {
00034 3,
00035 {0,0}
00036 };
00037
00038 void *dispatcher_cfg = &default_dispatcher_cfg;
00039
00040 cfg_def_t dispatcher_cfg_def[] = {
00041 {"probing_threshhold", CFG_VAR_INT | CFG_ATOMIC, 0, 0, 0, 0,
00042 "Number of failed requests, before a destination is set to probing."},
00043 {"ping_reply_codes", CFG_VAR_STR | CFG_CB_ONLY_ONCE , 0, 0, 0, ds_ping_reply_codes_update,
00044 "Additional, valid reply codes for the OPTIONS Pinger. Default is \"\""},
00045 {0, 0, 0, 0, 0, 0}
00046 };