summaryrefslogtreecommitdiff
path: root/pcap-new.c
Commit message (Expand)AuthorAgeFilesLines
* pcap_findalldevs_ex(): close directory handle before returning.Guy Harris2022-07-121-1/+24
* Suppress temporarily the warnings with "enable remote packet capture"Francois-Xavier Le Bail2021-06-291-0/+7
* Remove some workarounds for old compilers.Guy Harris2019-08-091-11/+11
* Clean up some references to WinPcap.Guy Harris2019-04-191-1/+1
* Handle pcap_open_live(), and other routines, using NULL to mean "any".Guy Harris2019-04-111-0/+10
* Make sure asprintf() is declared if it's present.Guy Harris2019-03-191-0/+2
* Use asprintf(), and provide a version for systems that lack it.Guy Harris2019-02-091-31/+6
* Fix copy-and-pasteo.Guy Harris2019-02-071-1/+1
* ISO C99 has what's needed to implement asprintf(), so fix a comment.Guy Harris2019-02-071-3/+0
* Fix comments.Guy Harris2019-02-071-2/+2
* Fix whitespace.Guy Harris2019-02-071-1/+1
* Don't format into an on-the-stack buffer and copy it to a mallocated buffer.Guy Harris2019-02-071-20/+59
* Use strdup() to mallocate a copy of a string.Guy Harris2019-02-071-14/+2
* More constification of arguments.Guy Harris2018-12-251-1/+1
* Provide out own strlcpy() and strlcat() routines if necessary.Guy Harris2018-10-161-4/+4
* Add a routine to format error messages with an errno-based message at the end.Guy Harris2017-11-151-5/+15
* Plug memory leaks and clean up interface list creation.Guy Harris2017-11-131-14/+34
* Put rpcap protocol routines common to client and server in rpcap-protocol.cGuy Harris2017-09-301-1/+0
* Fix Windows build errors.Guy Harris2017-09-061-1/+1
* Move the ADAPTER * out of pcap_t into the pcap-win32.c private data.Guy Harris2017-09-061-19/+9
* Move URL parsing and construction to pcap.c.Guy Harris2017-09-041-225/+0
* Make sure sockutils.h is included before portability.h.Guy Harris2017-09-031-1/+6
* Always include <config.h> rather than "config.h".Guy Harris2017-08-181-1/+1
* Move the RPCAP-specific functions to pcap-rpcap.h.Guy Harris2017-03-201-0/+1
* Get rid of extra semicolon.Guy Harris2017-03-191-1/+1
* Move the active-mode stuff to pcap-rpcap.c.Guy Harris2017-03-141-275/+0
* Make this code a bit more like future code.Guy Harris2017-03-131-66/+65
* Fix remote opening and remote open error string return.Guy Harris2017-03-131-4/+4
* Move rpcap-protocol.h to the top-level directory.Guy Harris2017-03-131-1/+1
* In pcap_open(), use pcap_create() and pcap_activate() for local interfaces.Guy Harris2017-03-131-25/+57
* Rename pcap-rpcap.h to pcap-rpcap-int.h.Guy Harris2017-03-131-1/+1
* Use _WIN32 consistently, but don't use it for threads vs. subprocesses.Guy Harris2017-03-131-9/+9
* Put rpcap protocol definitions into rpcap/rpcap-protocol.h.Guy Harris2017-03-101-1/+2
* Move the pcap_findalldevs_ex code for rpcap into pcap-rpcap.cGuy Harris2017-03-101-345/+11
* Remove unused variables, clean up comments.Guy Harris2017-03-081-5/+7
* Get remote capture almost working.Joerg Mayer2017-03-081-3/+3
* Get rid of unused structure declaration.Guy Harris2017-03-081-13/+0
* Clean up remote capture.Guy Harris2017-03-081-29/+5
* Mark a remote capture pcap_t as activated once it's opened.Guy Harris2017-03-071-0/+1
* Remove trailing spaces/tabsFrancois-Xavier Le Bail2016-08-201-3/+3
* Use strdup() to make mallocated copies of strings.Guy Harris2016-07-311-11/+4
* A pointer to an array is never null, so don't check if it is.Guy Harris2016-07-311-1/+1
* Add a variable that should have been in the previous commit.Guy Harris2016-07-311-0/+1
* Assorted cleanups.Guy Harris2016-07-311-31/+36
* Rename pcap-remote.[ch] to pcap-rpcap.[ch].Guy Harris2016-07-301-1/+1
* Fix MSVC compile warnings on the WinPcap specific code.Yang Luo2016-07-291-27/+27
* Have rpcap_remoteact_getsock() return a SOCKET and supply an "is active" flag.Guy Harris2016-07-281-11/+8
* Switch back to managed mode when closing the pcap if it switched it on, don't...Yang Luo2016-07-261-1/+1
* Add back WinPcap specific functions to libpcap, the built wpcap.dll already w...Yang Luo2016-07-261-0/+1269