diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-06 22:01:38 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-06 22:01:38 -0700 |
commit | f290068cc95f6e635791ee7f871e7118b6458502 (patch) | |
tree | 9f3fd77cf51551ccbc12bf6598218978c2fe33e4 /pcap-pf.c | |
parent | bad8c25c99cf5511125c7a7e688113c0811841c4 (diff) |
Push pcap_lib_version() into the pcap-XXX.c files.
This lets us move the Windows version to pcap-win32.c, so we don't have
to include packet32.h in pcap.c.
It also gets rid of some #ifdefs, and lets us construct the version
string on UN*X platforms, and MS-DOS, at compile time.
Diffstat (limited to 'pcap-pf.c')
-rw-r--r-- | pcap-pf.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -633,11 +633,13 @@ pcap_setfilter_pf(pcap_t *p, struct bpf_program *fp) return (0); } +#include "pcap_version.h" + /* - * No platform-specific information. + * Libpcap version string. */ const char * -pcap_platform_lib_version(void) +pcap_lib_version(void) { - return (NULL); + return (PCAP_VERSION_STRING); } |