Lines Matching +full:one +full:- +full:wire
2 * Copyright (c) 2002 - 2005 NetGroup, Politecnico di Torino (Italy)
3 * Copyright (c) 2005 - 2008 CACE Technologies, Davis (California)
61 * the process of interpreting the message, making it version-dependent.
72 * older servers - which only support version 0 - will send an
73 * authentication reply with no payload. Newer servers - which might
74 * support other versions - will send an authentication reply with
102 * - by the rpcapd daemon, when you types a list of allowed connecting hosts
103 * - by the rpcap client in active mode, when the client waits for incoming
119 * a 32-bit boundary, but be careful in any case.
124 * version ranges (if more than one version of the protocol has the same
132 * XXX - use the C99 types? Microsoft's newer versions of Visual Studio
136 typedef unsigned char uint8; /* 8-bit unsigned integer */
137 typedef unsigned short uint16; /* 16-bit unsigned integer */
138 typedef unsigned int uint32; /* 32-bit unsigned integer */
139 typedef int int32; /* 32-bit signed integer */
149 uint16 value; /* Message-dependent value (not always used) */
164 uint8 pad[2]; /* Pad to 4-byte boundary **/
196 * Format of an address as sent over the wire.
199 * machine-dependent.
202 * both of which are aligned on an 8-byte boundary, and both of which
205 * However, one has a 2-byte address family value at the beginning
206 * and the other has a 1-byte address length value and a 1-byte
208 * BSD sockaddr structure had a 2-byte address family value, which
209 * was later changed to a 1-byte address length value and a 1-byte
210 * address family value, when support for variable-length OSI
211 * network-layer addresses was added.
216 * This structure is supposed to be aligned on an 8-byte boundary;
219 * so we just define it as 128 bytes long, with a 2-byte address
220 * family. (We only support IPv4 and IPv6 addresses, which are fixed-
226 * as the value for AF_INET6 is machine-dependent. We use the
230 * (The Windows client is the only one that has been distributed
234 * try to make what goes over the wire look like what comes
240 char data[128-2]; /* Data */
244 * Format of an IPv4 address as sent over the wire.
256 * Format of an IPv6 address as sent over the wire.
285 int32 tzoff; /* Timezone offset - not used by newer clients */
300 …int32 bufsize; /* Size of the user buffer allocated by WinPcap; it can be different from the one …
315 * 2038-01-19 03:14:07 UTC.
320 uint32 len; /* Real length of this packet (off wire) */
321 …uint32 npkt; /* Ordinal number of the packet (i.e. the first one captured has '1', the second one…
338 int32 k; /* instruction-dependent value */
424 #define PCAP_ERR_RUNTIMETIMEOUT 14 /* The RPCAP run-time timeout has expired */
433 * \brief Buffer used by socket functions to send-receive packets.