Add support for the slave_only management request.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
bed1067d2b
commit
78e37ebf0b
6
clock.c
6
clock.c
|
@ -216,6 +216,12 @@ static int clock_management_get_response(struct clock *c, struct port *p,
|
||||||
datalen = sizeof(*mtd);
|
datalen = sizeof(*mtd);
|
||||||
respond = 1;
|
respond = 1;
|
||||||
break;
|
break;
|
||||||
|
case SLAVE_ONLY:
|
||||||
|
mtd = (struct management_tlv_datum *) tlv->data;
|
||||||
|
mtd->val = c->dds.flags & DDS_SLAVE_ONLY;
|
||||||
|
datalen = sizeof(*mtd);
|
||||||
|
respond = 1;
|
||||||
|
break;
|
||||||
case TIME_STATUS_NP:
|
case TIME_STATUS_NP:
|
||||||
tsn = (struct time_status_np *) tlv->data;
|
tsn = (struct time_status_np *) tlv->data;
|
||||||
tsn->master_offset = c->master_offset;
|
tsn->master_offset = c->master_offset;
|
||||||
|
|
7
pmc.c
7
pmc.c
|
@ -67,7 +67,7 @@ struct management_id idtab[] = {
|
||||||
{ "PRIORITY1", PRIORITY1, do_get_action },
|
{ "PRIORITY1", PRIORITY1, do_get_action },
|
||||||
{ "PRIORITY2", PRIORITY2, do_get_action },
|
{ "PRIORITY2", PRIORITY2, do_get_action },
|
||||||
{ "DOMAIN", DOMAIN, do_get_action },
|
{ "DOMAIN", DOMAIN, do_get_action },
|
||||||
{ "SLAVE_ONLY", SLAVE_ONLY, not_supported },
|
{ "SLAVE_ONLY", SLAVE_ONLY, do_get_action },
|
||||||
{ "TIME", TIME, not_supported },
|
{ "TIME", TIME, not_supported },
|
||||||
{ "CLOCK_ACCURACY", CLOCK_ACCURACY, not_supported },
|
{ "CLOCK_ACCURACY", CLOCK_ACCURACY, not_supported },
|
||||||
{ "UTC_PROPERTIES", UTC_PROPERTIES, not_supported },
|
{ "UTC_PROPERTIES", UTC_PROPERTIES, not_supported },
|
||||||
|
@ -328,6 +328,11 @@ static void pmc_show(struct ptp_message *msg, FILE *fp)
|
||||||
fprintf(fp, "DOMAIN "
|
fprintf(fp, "DOMAIN "
|
||||||
IFMT "domainNumber %hhu", mtd->val);
|
IFMT "domainNumber %hhu", mtd->val);
|
||||||
break;
|
break;
|
||||||
|
case SLAVE_ONLY:
|
||||||
|
mtd = (struct management_tlv_datum *) mgt->data;
|
||||||
|
fprintf(fp, "SLAVE_ONLY "
|
||||||
|
IFMT "slaveOnly %d", mtd->val & DDS_SLAVE_ONLY ? 1 : 0);
|
||||||
|
break;
|
||||||
case TIME_STATUS_NP:
|
case TIME_STATUS_NP:
|
||||||
tsn = (struct time_status_np *) mgt->data;
|
tsn = (struct time_status_np *) mgt->data;
|
||||||
fprintf(fp, "TIME_STATUS_NP "
|
fprintf(fp, "TIME_STATUS_NP "
|
||||||
|
|
Loading…
Reference in New Issue