aboutsummaryrefslogtreecommitdiff
path: root/pcap-rpcap-int.h
Commit message (Collapse)AuthorAgeFilesLines
* Use C99 types for specific-number-of-octets values.Guy Harris2022-07-081-1/+1
| | | | | | Instead of defining intN and uintN types for use in the rpcap protocol - except on Haiku - just use the C99 intN_t and uintN_t types, as we now require them to be available.
* Redo the message processing in the client, add protocol version negotiation.Guy Harris2017-10-311-1/+0
| | | | | | Currently, we only have one protocol version, but the code should be able to handle multiple versions in the future - and to be able to work with older code that doesn't do negotiation.
* Make rpcap_sendauth() static.Guy Harris2017-03-141-1/+0
| | | | It's now used only in pcap-rpcap.c.
* Move the active-mode stuff to pcap-rpcap.c.Guy Harris2017-03-141-17/+0
| | | | | | It's not a general API, it's a hack for doing active mode with RPCAP. Make the variables it uses static, as they're not used anywhere else.
* Don't export pcap_opensource_remote() or pcap_startcapture_remote().Guy Harris2017-03-131-3/+0
| | | | | | Absorb pcap_opensource_remote() into pcap_open_rpcap(). Make pcap_startcapture_remote() static.
* Make some functions used only in pcap-rpcap.c static.Guy Harris2017-03-131-3/+0
| | | | | Move rpcap_remoteact_getsock() before its caller as part of that process.
* Clean up comments.Guy Harris2017-03-131-15/+5
|
* Rename pcap-rpcap.h to pcap-rpcap-int.h.Guy Harris2017-03-131-0/+110
This is preparing for more general support for different types of remote capture, using pcap_create() and pcap_activate().