Searched defs:pdu (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/cmd/hal/addons/network-devices/
H A Dsnmp.c51 struct snmp_pdu *pdu, void *data)
53 struct sockaddr_in *addr = pdu->transport_data;
50 snmp_response_cb(int operation, struct snmp_session *sp, int reqid, struct snmp_pdu *pdu, void *data) argument
/osnet-11/usr/src/lib/libndr/common/
H A Dndr_marshal.c369 uint8_t *pdu; local
372 pdu = (uint8_t *)nds->pdu_base_offset + nds->pdu_scan_offset;
373 bcopy(pdu, hdr, NDR_RSP_HDR_SIZE);
383 tmp = (ndr_common_header_t *)pdu;
/osnet-11/usr/src/lib/libvdp/common/
H A Dvdp_impl.c377 vdp_ecp_cb(void *instp, ushort_t seq, ushort_t type, char *pdu, int len) argument
395 tlv_type = LLDP_TLV_TYPE(pdu);
396 tlv_len = LLDP_TLV_LEN(pdu);
405 pdu += sizeof (vdp_tlv_mgr_t);
410 tlv_type = LLDP_TLV_TYPE(pdu);
411 tlv_len = LLDP_TLV_LEN(pdu);
419 pdu += sizeof (uint16_t);
422 VDP_ORGTLV_OUI(pdu) == VDP_ORACLE_OUI &&
423 VDP_ORGTLV_STYPE(pdu) == VDP_ORACLEOUI_VSIMGR_SUBTYPE &&
424 *((uint8_t *)(pdu
[all...]
/osnet-11/usr/src/lib/liblldp/common/
H A Dliblldp_tlv.c43 lldp_firsttlv(uint8_t *pdu, int pdulen, lldp_tlv_t *tlv) argument
45 uint8_t *end = pdu + pdulen;
48 if (pdu + 2 > end)
51 tlv->lt_type = LLDP_TLV_TYPE(pdu);
52 tlv->lt_len = LLDP_TLV_LEN(pdu);
53 if (pdu + 2 + tlv->lt_len > end)
55 tlv->lt_value = pdu + 2;
59 lldp_nexttlv(uint8_t *pdu, int pdulen, lldp_tlv_t *old, lldp_tlv_t *new) argument
62 uint8_t *end = pdu + pdulen;
445 /* check to see if we can accomodate this info in the pdu */
1733 uint8_t *pdu = tlv->lt_value - 2; /* Print from the TLV start */ local
[all...]

Completed in 30 milliseconds