Signed-off-by: Richard Cochran <richardcoch...@gmail.com>
---
 config.c | 12 ++----------
 ptp4l.c  |  5 ++---
 2 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/config.c b/config.c
index afb3879..3f4014c 100644
--- a/config.c
+++ b/config.c
@@ -99,6 +99,7 @@ struct config_item config_tab[] = {
        GLOB_ITEM_INT("clockClass", 248, 0, UINT8_MAX),
        PORT_ITEM_INT("delayAsymmetry", 0, INT_MIN, INT_MAX),
        PORT_ITEM_INT("delay_filter_length", 10, 1, INT_MAX),
+       GLOB_ITEM_INT("domainNumber", 0, 0, 127),
        PORT_ITEM_INT("egressLatency", 0, INT_MIN, INT_MAX),
        PORT_ITEM_INT("fault_badpeernet_interval", 16, INT32_MIN, INT32_MAX),
        PORT_ITEM_INT("fault_reset_interval", 4, INT8_MIN, INT8_MAX),
@@ -390,24 +391,15 @@ static enum parser_result parse_global_setting(const char 
*option,
                                               struct config *cfg)
 {
        int i, cfg_ignore = cfg->cfg_ignore;
-       unsigned int uval;
        unsigned char mac[MAC_LEN];
        unsigned char oui[OUI_LEN];
-
-       struct defaultDS *dds = &cfg->dds.dds;
        enum parser_result r;
 
        r = parse_fault_interval(cfg, NULL, option, value);
        if (r != NOT_PARSED)
                return r;
 
-       if (!strcmp(option, "domainNumber")) {
-               r = get_ranged_uint(value, &uval, 0, 127);
-               if (r != PARSED_OK)
-                       return r;
-               dds->domainNumber = uval;
-
-       } else if (!strcmp(option, "ptp_dst_mac")) {
+       if (!strcmp(option, "ptp_dst_mac")) {
                if (MAC_LEN != sscanf(value, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
                                      &mac[0], &mac[1], &mac[2], &mac[3], 
&mac[4], &mac[5]))
                        return BAD_VALUE;
diff --git a/ptp4l.c b/ptp4l.c
index 32c022d..b448d55 100644
--- a/ptp4l.c
+++ b/ptp4l.c
@@ -43,9 +43,6 @@ static struct config cfg_settings = {
        .interfaces = STAILQ_HEAD_INITIALIZER(cfg_settings.interfaces),
 
        .dds = {
-               .dds = {
-                       .domainNumber = 0,
-               },
                .clock_desc = {
                        .productDescription = {
                                .max_symbols = 64,
@@ -225,6 +222,8 @@ int main(int argc, char *argv[])
        ds->clockQuality.offsetScaledLogVariance =
                config_get_int(cfg, NULL, "offsetScaledLogVariance");
 
+       ds->domainNumber = config_get_int(cfg, NULL, "domainNumber");
+
        if (config_get_int(cfg, NULL, "slaveOnly")) {
            ds->flags |= DDS_SLAVE_ONLY;
            ds->clockQuality.clockClass = 248;
-- 
2.1.4


------------------------------------------------------------------------------
_______________________________________________
Linuxptp-devel mailing list
Linuxptp-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxptp-devel

Reply via email to