Added tfc_padding option, changes signature to master changes

This commit is contained in:
Martin Willi 2010-12-10 11:29:39 +01:00
parent 6840a6fb98
commit 04a1279f91
1 changed files with 5 additions and 1 deletions

View File

@ -146,14 +146,18 @@ static child_cfg_t *load_child_config(private_config_t *this,
host_t *net;
char *token;
int bits;
u_int32_t tfc;
if (settings->get_bool(settings, "configs.%s.%s.transport",
FALSE, config, child))
{
mode = MODE_TRANSPORT;
}
tfc = settings->get_int(settings, "configs.%s.%s.tfc_padding",
0, config, child);
child_cfg = child_cfg_create(child, &lifetime, NULL, FALSE, mode,
ACTION_NONE, ACTION_NONE, FALSE, 0, 0, NULL, NULL);
ACTION_NONE, ACTION_NONE, ACTION_NONE,
FALSE, 0, 0, NULL, NULL, tfc);
token = settings->get_str(settings, "configs.%s.%s.proposal",
NULL, config, child);