X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Flldp%2Flldp_output.c;h=4ae25a45b7b19a53e6c051d81f56ae98adf4168a;hb=b7b929931a07fbb27b43d5cd105f366c3e29807e;hp=3714e8ff77ee2683529ef5cb605f6ad9b69dec35;hpb=9a6fcef43c3263d6acb95aaca2dcd2eb86169a75;p=vpp.git diff --git a/src/vnet/lldp/lldp_output.c b/src/vnet/lldp/lldp_output.c index 3714e8ff77e..4ae25a45b7b 100644 --- a/src/vnet/lldp/lldp_output.c +++ b/src/vnet/lldp/lldp_output.c @@ -137,11 +137,11 @@ lldp_add_mgmt_addr (const lldp_intf_t * n, const vnet_hw_interface_t * hw, { /* If no management address is configured, the interface port's MAC - addressis sent in one TLV. + address is sent in one TLV. */ lldp_build_mgmt_addr_tlv (t0p, 1, /* address subtype: Ipv4 */ - 6, /* address string lenth */ + 6, /* address string length */ hw->hw_address, /* address */ hw->hw_if_index, /* if index */ vec_len (n->mgmt_oid), /* OID length */ @@ -152,7 +152,7 @@ lldp_add_mgmt_addr (const lldp_intf_t * n, const vnet_hw_interface_t * hw, if (len_ip4) { lldp_build_mgmt_addr_tlv (t0p, 1, /* address subtype: Ipv4 */ - len_ip4, /* address string lenth */ + len_ip4, /* address string length */ n->mgmt_ip4, /* address */ hw->hw_if_index, /* if index */ vec_len (n->mgmt_oid), /* OID length */ @@ -162,7 +162,7 @@ lldp_add_mgmt_addr (const lldp_intf_t * n, const vnet_hw_interface_t * hw, if (len_ip6) { lldp_build_mgmt_addr_tlv (t0p, 2, /* address subtype: Ipv6 */ - len_ip6, /* address string lenth */ + len_ip6, /* address string length */ n->mgmt_ip6, /* address */ hw->hw_if_index, /* if index */ vec_len (n->mgmt_oid), /* OID length */ @@ -271,7 +271,7 @@ lldp_template_init (vlib_main_t * vm) { ethernet_header_t h; - memset (&h, 0, sizeof (h)); + clib_memset (&h, 0, sizeof (h)); /* * Send to 01:80:C2:00:00:0E - propagation constrained to a single @@ -280,8 +280,8 @@ lldp_template_init (vlib_main_t * vm) h.dst_address[0] = 0x01; h.dst_address[1] = 0x80; h.dst_address[2] = 0xC2; - /* h.dst_address[3] = 0x00; (memset) */ - /* h.dst_address[4] = 0x00; (memset) */ + /* h.dst_address[3] = 0x00; (clib_memset) */ + /* h.dst_address[4] = 0x00; (clib_memset) */ h.dst_address[5] = 0x0E; /* leave src address blank (fill in at send time) */