Lines Matching +full:re +full:- +full:sampling
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.
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 **/
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
232 * from source by the user or administrator, so they're in a
240 char data[128-2]; /* Data */
285 int32 tzoff; /* Timezone offset - not used by newer clients */
315 * 2038-01-19 03:14:07 UTC.
338 int32 k; /* instruction-dependent value */
359 /* Structure that is needed to set sampling parameters */
362 uint8 method; /* Sampling method */
365 uint32 value; /* Parameter related to the sampling method */
386 #define RPCAP_MSG_SETSAMPLING_REQ 0x0B /* Set sampling parameters */
424 #define PCAP_ERR_RUNTIMETIMEOUT 14 /* The RPCAP run-time timeout has expired */
425 #define PCAP_ERR_SETSAMPLING 15 /* Error during the settings of sampling parameters */
433 * \brief Buffer used by socket functions to send-receive packets.