Lines Matching defs:pcap_rpcap
116 struct pcap_rpcap { struct
122 int rmt_clientside;
124 PCAP_SOCKET rmt_sockctrl; /* socket ID of the socket used for the control connection */
125 PCAP_SOCKET rmt_sockdata; /* socket ID of the socket used for the data connection */
126 SSL *ctrl_ssl, *data_ssl; /* optional transport of rmt_sockctrl and rmt_sockdata via TLS */
127 …ags, since they are passed by the pcap_open_live(), but they are used by the pcap_startcapture() */
128 …ue' if the capture is already started (needed to know if we have to call the pcap_startcapture() */
129 …me) that stores the current filter. Needed when flag PCAP_OPENFLAG_NOCAPTURE_RPCAP is turned on. */
131 uint8 protocol_version; /* negotiated protocol version */
132 uint8 uses_ssl; /* User asked for rpcaps scheme */
133 int byte_swapped; /* Server byte order is swapped from ours */
135 unsigned int TotNetDrops; /* keeps the number of packets that have been dropped by the network */
153 unsigned int TotCapt;
155 struct pcap_stat stat;
180 static int rpcap_read_packet_msg(struct pcap_rpcap const *, pcap_t *p, size_t size); argument