Lines Matching +full:wire +full:- +full:config
24 #include <config.h>
26 #include "netdissect-stdinc.h"
51 * Appears at the front of each Control S-type packet in DLT_USB captures.
94 * are zeroed-out padding fields.
138 /* returns direction: 1=inbound 2=outbound -1=invalid */
144 direction = -1; in get_direction()
158 direction = -1; in get_direction()
171 direction = -1; in get_direction()
175 direction = -1; in get_direction()
187 ndo->ndo_protocol = "usb"; in usb_header_print()
190 if (ndo->ndo_qflag) in usb_header_print()
194 transfer_type = GET_U_1(uh->transfer_type); in usb_header_print()
212 event_type = GET_U_1(uh->event_type); in usb_header_print()
232 ND_PRINT(" %u:%u:%u", GET_HE_U_2(uh->bus_id), in usb_header_print()
233 GET_U_1(uh->device_address), in usb_header_print()
234 GET_U_1(uh->endpoint_number) & 0x7f); in usb_header_print()
239 * 48-byte header.
241 * 'p' points to the header of the packet, 'h->ts' is the timestamp,
242 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
249 ndo->ndo_protocol = "usb_linux_48_byte"; in usb_linux_48_byte_if_print()
251 ndo->ndo_ll_hdr_len += sizeof (pcap_usb_header); in usb_linux_48_byte_if_print()
259 * 64-byte header.
261 * 'p' points to the header of the packet, 'h->ts' is the timestamp,
262 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
269 ndo->ndo_protocol = "usb_linux_64_byte"; in usb_linux_64_byte_if_print()
271 ndo->ndo_ll_hdr_len += sizeof (pcap_usb_header_mmapped); in usb_linux_64_byte_if_print()