config: convert 'tx_timestamp_timeout' to the new scheme.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
85bbf9d919
commit
42dda4d2b7
7
config.c
7
config.c
|
@ -78,6 +78,7 @@ struct config_item {
|
||||||
|
|
||||||
struct config_item config_tab[] = {
|
struct config_item config_tab[] = {
|
||||||
GLOB_ITEM_INT("assume_two_step", 0, 0, 1),
|
GLOB_ITEM_INT("assume_two_step", 0, 0, 1),
|
||||||
|
GLOB_ITEM_INT("tx_timestamp_timeout", 1, 1, INT_MAX),
|
||||||
PORT_ITEM_INT("udp_ttl", 1, 1, 255),
|
PORT_ITEM_INT("udp_ttl", 1, 1, 255),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -519,12 +520,6 @@ static enum parser_result parse_global_setting(const char *option,
|
||||||
cfg->dds.freq_est_interval = val;
|
cfg->dds.freq_est_interval = val;
|
||||||
pod->freq_est_interval = val;
|
pod->freq_est_interval = val;
|
||||||
|
|
||||||
} else if (!strcmp(option, "tx_timestamp_timeout")) {
|
|
||||||
r = get_ranged_int(value, &val, 1, INT_MAX);
|
|
||||||
if (r != PARSED_OK)
|
|
||||||
return r;
|
|
||||||
*cfg->tx_timestamp_timeout = val;
|
|
||||||
|
|
||||||
} else if (!strcmp(option, "check_fup_sync")) {
|
} else if (!strcmp(option, "check_fup_sync")) {
|
||||||
r = get_ranged_int(value, &val, 0, 1);
|
r = get_ranged_int(value, &val, 0, 1);
|
||||||
if (r != PARSED_OK)
|
if (r != PARSED_OK)
|
||||||
|
|
1
config.h
1
config.h
|
@ -70,7 +70,6 @@ struct config {
|
||||||
|
|
||||||
struct default_ds dds;
|
struct default_ds dds;
|
||||||
struct port_defaults pod;
|
struct port_defaults pod;
|
||||||
int *tx_timestamp_timeout;
|
|
||||||
int *check_fup_sync;
|
int *check_fup_sync;
|
||||||
|
|
||||||
enum servo_type clock_servo;
|
enum servo_type clock_servo;
|
||||||
|
|
2
ptp4l.c
2
ptp4l.c
|
@ -102,7 +102,6 @@ static struct config cfg_settings = {
|
||||||
.dm = DM_E2E,
|
.dm = DM_E2E,
|
||||||
.transport = TRANS_UDP_IPV4,
|
.transport = TRANS_UDP_IPV4,
|
||||||
|
|
||||||
.tx_timestamp_timeout = &sk_tx_timeout,
|
|
||||||
.check_fup_sync = &sk_check_fupsync,
|
.check_fup_sync = &sk_check_fupsync,
|
||||||
|
|
||||||
.clock_servo = CLOCK_SERVO_PI,
|
.clock_servo = CLOCK_SERVO_PI,
|
||||||
|
@ -281,6 +280,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
assume_two_step = config_get_int(cfg, NULL, "assume_two_step");
|
assume_two_step = config_get_int(cfg, NULL, "assume_two_step");
|
||||||
|
sk_tx_timeout = config_get_int(cfg, NULL, "tx_timestamp_timeout");
|
||||||
|
|
||||||
if (!cfg_settings.dds.grand_master_capable &&
|
if (!cfg_settings.dds.grand_master_capable &&
|
||||||
ds->flags & DDS_SLAVE_ONLY) {
|
ds->flags & DDS_SLAVE_ONLY) {
|
||||||
|
|
Loading…
Reference in New Issue