Commit e7c5aa91 authored by Davide Ciminaghi's avatar Davide Ciminaghi Committed by Alessandro Rubini

conf: add "sync-interval" option.

This is equivalent to the -y command line option, which will be removed.
Signed-off-by: Davide Ciminaghi's avatarDavide Ciminaghi <ciminaghi@gnudd.com>
parent c722d72f
...@@ -230,6 +230,17 @@ static int f_announce_intvl(int lineno, struct pp_globals *ppg, ...@@ -230,6 +230,17 @@ static int f_announce_intvl(int lineno, struct pp_globals *ppg,
return 0; return 0;
} }
static int f_sync_intvl(int lineno, struct pp_globals *ppg,
union pp_cfg_arg *arg)
{
int i = arg->i;
CHECK_PPI(0);
GOPTS(ppg)->sync_intvl = i;
return 0;
}
/* These are the tables for the parser */ /* These are the tables for the parser */
static struct pp_argname arg_proto[] = { static struct pp_argname arg_proto[] = {
{"raw", PPSI_PROTO_RAW}, {"raw", PPSI_PROTO_RAW},
...@@ -264,6 +275,7 @@ static struct pp_argline pp_global_arglines[] = { ...@@ -264,6 +275,7 @@ static struct pp_argline pp_global_arglines[] = {
{ f_latency, "latency", ARG_INT2}, { f_latency, "latency", ARG_INT2},
{ f_domain, "domain-number", ARG_INT}, { f_domain, "domain-number", ARG_INT},
{ f_announce_intvl, "announce-interval", ARG_INT}, { f_announce_intvl, "announce-interval", ARG_INT},
{ f_sync_intvl, "sync-interval", ARG_INT},
{} {}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment