HomeSort by: relevance | last modified time | path
    Searched defs:tlv (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.sbin/ldpd/
tlv.h 1 /* $NetBSD: tlv.h,v 1.5 2022/02/07 02:35:09 rillig Exp $ */
35 /* TLV messages */
60 /* General TLV structure */
61 struct tlv { struct
67 /* Common Hello TLV structure */
75 /* Hello TLV structure */
84 /* Transport address TLV */
98 /* Initialization TLV structure */
116 /* Keepalive TLV */
123 /* Notification TLV */
    [all...]
  /src/sys/net/lagg/
if_lagg_lacp.h 69 struct tlv { struct
  /src/sys/netinet/
sctp_asconf.c 151 uint8_t *tlv; local in function:sctp_asconf_error_response
184 tlv = (uint8_t *)(error + 1);
185 memcpy(tlv, error_tlv, tlv_length);
1231 /* invalid included TLV length */
1234 printf("asconf_process_error: included TLV too long\n");
  /src/sys/dev/pci/
if_iwn.c 5883 * Extract text and data sections from a TLV firmware image.
5890 const struct iwn_fw_tlv *tlv; local in function:iwn_read_firmware_tlv
5923 while (ptr + sizeof (*tlv) <= end) {
5924 tlv = (const struct iwn_fw_tlv *)ptr;
5925 len = le32toh(tlv->len);
5927 ptr += sizeof (*tlv);
5934 if (tlv->alt != 0 && tlv->alt != htole16(alt))
5937 switch (le16toh(tlv->type)) {
5961 "TLV type %d has invalid size %u\n"
    [all...]
if_iwm.c 658 struct iwm_ucode_tlv tlv; local in function:iwm_read_firmware
708 while (len >= sizeof(tlv)) {
712 memcpy(&tlv, data, sizeof(tlv));
713 tlv_len = le32toh(tlv.length);
714 tlv_type = le32toh(tlv.type);
716 len -= sizeof(tlv);
717 data += sizeof(tlv);
6544 * Enable LAR only if it is supported by the FW (TLV) &&

Completed in 23 milliseconds