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
00021
00022
00023
00031 #include "../../cfg/cfg.h"
00032 #include "../../parser/msg_parser.h"
00033
00034 #include "config.h"
00035
00036 struct cfg_group_carrierroute default_carrierroute_cfg = {
00037 0,
00038 1,
00039 2000
00040 };
00041
00042 void *carrierroute_cfg = &default_carrierroute_cfg;
00043
00044 cfg_def_t carrierroute_cfg_def[] = {
00045 {"use_domain", CFG_VAR_INT , 0, 1, 0, 0,
00046 "When using tree lookup per user, this parameter specifies whether to use the domain part for user matching or not." },
00047 {"fallback_default", CFG_VAR_INT , 0, 1, 0, 0,
00048 "If the user has a non-existing tree set and fallback_default is set to 1, the default tree is used. Else error is returned" },
00049 {"fetch_rows", CFG_VAR_INT , 0, 0, 0, 0,
00050 "The number of the rows to be fetched at once from database when loading the routing data."},
00051 {0, 0, 0, 0, 0, 0}
00052 };
00053