Add support for the log sync interval management request.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
d2f8bc5e38
commit
06a65003f4
7
pmc.c
7
pmc.c
|
@ -91,7 +91,7 @@ struct management_id idtab[] = {
|
||||||
{ "PORT_DATA_SET", PORT_DATA_SET, do_get_action },
|
{ "PORT_DATA_SET", PORT_DATA_SET, do_get_action },
|
||||||
{ "LOG_ANNOUNCE_INTERVAL", LOG_ANNOUNCE_INTERVAL, do_get_action },
|
{ "LOG_ANNOUNCE_INTERVAL", LOG_ANNOUNCE_INTERVAL, do_get_action },
|
||||||
{ "ANNOUNCE_RECEIPT_TIMEOUT", ANNOUNCE_RECEIPT_TIMEOUT, do_get_action },
|
{ "ANNOUNCE_RECEIPT_TIMEOUT", ANNOUNCE_RECEIPT_TIMEOUT, do_get_action },
|
||||||
{ "LOG_SYNC_INTERVAL", LOG_SYNC_INTERVAL, not_supported },
|
{ "LOG_SYNC_INTERVAL", LOG_SYNC_INTERVAL, do_get_action },
|
||||||
{ "VERSION_NUMBER", VERSION_NUMBER, not_supported },
|
{ "VERSION_NUMBER", VERSION_NUMBER, not_supported },
|
||||||
{ "ENABLE_PORT", ENABLE_PORT, not_supported },
|
{ "ENABLE_PORT", ENABLE_PORT, not_supported },
|
||||||
{ "DISABLE_PORT", DISABLE_PORT, not_supported },
|
{ "DISABLE_PORT", DISABLE_PORT, not_supported },
|
||||||
|
@ -405,6 +405,11 @@ static void pmc_show(struct ptp_message *msg, FILE *fp)
|
||||||
fprintf(fp, "ANNOUNCE_RECEIPT_TIMEOUT "
|
fprintf(fp, "ANNOUNCE_RECEIPT_TIMEOUT "
|
||||||
IFMT "announceReceiptTimeout %hhu", mtd->val);
|
IFMT "announceReceiptTimeout %hhu", mtd->val);
|
||||||
break;
|
break;
|
||||||
|
case LOG_SYNC_INTERVAL:
|
||||||
|
mtd = (struct management_tlv_datum *) mgt->data;
|
||||||
|
fprintf(fp, "ANNOUNCE_RECEIPT_TIMEOUT "
|
||||||
|
IFMT "logSyncInterval %hhd", mtd->val);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
fprintf(fp, "\n");
|
fprintf(fp, "\n");
|
||||||
|
|
6
port.c
6
port.c
|
@ -570,6 +570,12 @@ static int port_management_get_response(struct port *target,
|
||||||
datalen = sizeof(*mtd);
|
datalen = sizeof(*mtd);
|
||||||
respond = 1;
|
respond = 1;
|
||||||
break;
|
break;
|
||||||
|
case LOG_SYNC_INTERVAL:
|
||||||
|
mtd = (struct management_tlv_datum *) tlv->data;
|
||||||
|
mtd->val = target->logSyncInterval;
|
||||||
|
datalen = sizeof(*mtd);
|
||||||
|
respond = 1;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (respond) {
|
if (respond) {
|
||||||
if (datalen % 2) {
|
if (datalen % 2) {
|
||||||
|
|
Loading…
Reference in New Issue