summaryrefslogtreecommitdiff
path: root/pcap-libdlpi.c
Commit message (Expand)AuthorAgeFilesLines
* Fix spaces before tabs in indentationFrancois-Xavier Le Bail2023-02-151-1/+1
* Make sure some error message is provided for PCAP_ERROR_NO_SUCH_DEVICE.Guy Harris2022-03-141-2/+7
* Set the error message for "permission denied" errors.Guy Harris2022-03-111-9/+26
* Handle the pcap_t+private data in a fashion that makes fewer assumptions.Guy Harris2020-07-011-1/+1
* Remove some workarounds for old compilers.Guy Harris2019-08-091-1/+1
* Provide out own strlcpy() and strlcat() routines if necessary.Guy Harris2018-10-161-1/+1
* Squelch more narrowing warnings.Guy Harris2018-09-121-2/+2
* "connected"/"disconnected" doesn't apply to loopback devices.Guy Harris2018-05-011-3/+15
* find_or_add_dev() takes a pointer to a get-additional-flags routine as an arg.Guy Harris2018-05-011-2/+2
* Pass the "get additional flags" function to the findalldevs helpers.Guy Harris2018-04-301-2/+2
* Fix function signatures.Guy Harris2018-04-291-1/+1
* Add more interface flags to pcap_findalldevs().Guy Harris2018-04-291-0/+11
* Add a routine to format error messages with an errno-based message at the end.Guy Harris2017-11-151-4/+4
* No need to generate version.c or pcap_version.h.Guy Harris2017-10-031-2/+0
* Push pcap_lib_version() into the pcap-XXX.c files.Guy Harris2017-09-061-3/+5
* Always include <config.h> rather than "config.h".Guy Harris2017-08-181-1/+1
* Make the checks and adjustment of the snapshot length module-dependent.Guy Harris2017-06-011-0/+11
* Allow a platform to add information to the version string.Guy Harris2017-05-161-0/+9
* Have a pcap_if_list_t structure for use by the findalldevs code.Guy Harris2017-01-181-3/+5
* Clean up findalldevs code.Guy Harris2016-12-171-1/+12
* pcap_create_interface() needs the interface name on Linux.Guy Harris2016-06-301-1/+1
* Don't have pcap_create_common() set opt.device.Guy Harris2016-06-301-2/+2
* Rename opt.source to opt.device.Guy Harris2016-06-291-5/+5
* Let the platform decide how to check capturable interfaces.Guy Harris2016-06-281-1/+12
* Have pcap_platform_finddevs() do all the "find local interfaces" work.Guy Harris2016-06-261-0/+6
* Use pcap_snprintf() instead of snprintf().Guy Harris2015-11-031-3/+3
* Make the buffer member of a pcap_t a void *.Guy Harris2015-08-091-1/+1
* In activate routines, don't set status unless a warning or error occurs.Guy Harris2014-04-221-24/+30
* Return warning indications from the activate routine.Guy Harris2014-04-221-2/+2
* In activate routines, don't pre-set the status; set it for all errors.Guy Harris2014-04-181-4/+15
* remove libpcap's own CVS keywordsDenis Ovsienko2014-01-031-5/+0
* Rename the "private" member of a pcap_t to avoid C++ issues.Guy Harris2013-08-071-5/+5
* Add an API to set "immediate mode".Guy Harris2013-05-081-1/+1
* Move platform-dependent pcap_t data out of the pcap_t structure.Guy Harris2013-05-061-14/+20
* Fix some compile warnings/errors.Guy Harris2013-05-061-1/+1
* Fix presumed typo. (This couldn't have compiled.)Guy Harris2012-07-051-1/+1
* Have non-interface modules take responsibility for identifying their devices.Guy Harris2012-06-111-1/+1
* Treat either EPERM or EACCES as "no soup for you".Guy Harris2010-09-211-2/+4
* Return PCAP_ERROR_PROMISC_PERM_DENIED if you have permission to open theGuy Harris2010-09-211-19/+49
* From Sebastien Roy: fix compilation problems on versions of Solaris withGuy Harris2009-02-261-4/+6
* Turn close_op into cleanup_op; the routine that handles it can also beguy2008-04-141-12/+11
* Add an error for "you don't have permission to open that device", asguy2008-04-091-11/+19
* From Paolo Abeni and me: split pcap_open_live() into a "get a pcap_tguy2008-04-041-32/+41
* Get rid of an unused variable, and stop using an unset variable and thenguy2008-03-151-3/+2
* Get rid of empty statement.guy2008-03-151-2/+1
* Support for libdlpi, and for enabling "passive mode" on Solaris systemsguy2008-03-131-0/+356