Skip to content

Commit

Permalink
lib: fix types in custom TLVs documentation
Browse files Browse the repository at this point in the history
Fix #550
  • Loading branch information
vincentbernat committed Oct 8, 2022
1 parent 4755f18 commit 7064f06
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/lldpctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -860,12 +860,12 @@ typedef enum {
lldpctl_k_config_max_neighbors, /**< `(I,WO)`Maximum number of neighbors per port. */

lldpctl_k_custom_tlvs = 5000, /**< `(AL)` custom TLVs */
lldpctl_k_custom_tlvs_clear, /** `(I,WO)` clear list of custom TLVs */
lldpctl_k_custom_tlv, /** `(AL,WO)` custom TLV **/
lldpctl_k_custom_tlv_oui, /**< `(I,WO)` custom TLV Organizationally Unique Identifier. Default is 0 (3 bytes) */
lldpctl_k_custom_tlv_oui_subtype, /**< `(I,WO)` custom TLV subtype. Default is 0 (1 byte) */
lldpctl_k_custom_tlv_oui_info_string, /**< `(I,WO)` custom TLV Organizationally Unique Identifier Information String (up to 507 bytes) */
lldpctl_k_custom_tlv_op, /**< `(I,WO)` custom TLV operation */
lldpctl_k_custom_tlvs_clear, /**< `(WO)` clear list of custom TLVs */
lldpctl_k_custom_tlv, /**< `(AL,WO)` custom TLV **/
lldpctl_k_custom_tlv_oui, /**< `(B,W)` custom TLV Organizationally Unique Identifier. Default is 0 (3 bytes) */
lldpctl_k_custom_tlv_oui_subtype, /**< `(I,W)` custom TLV subtype. Default is 0 (1 byte) */
lldpctl_k_custom_tlv_oui_info_string, /**< `(BS,W)` custom TLV Organizationally Unique Identifier Information String (up to 507 bytes) */
lldpctl_k_custom_tlv_op, /**< `(S,W)` custom TLV operation */

} lldpctl_key_t;

Expand Down

0 comments on commit 7064f06

Please sign in to comment.