diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-30 01:10:29 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-30 01:10:29 -0700 |
commit | 62f2725b5745a2bfcd4223e2ca12566556b73d22 (patch) | |
tree | c8b9e114ceaea79eeaaf7681a81f162b30f31dc4 /config.h.in | |
parent | 9fe69d02a510c12236b111d0b1c59670d5bb91af (diff) | |
download | tcpdump-62f2725b5745a2bfcd4223e2ca12566556b73d22.tar.gz |
Use pcap_dump_ftell64() if we have it.
That way, even if a file offset doesn't fit in a long, we can still
handle a -C flag specifying a maximum file size >=2GB.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index bc123628..9ccae642 100644 --- a/config.h.in +++ b/config.h.in @@ -124,6 +124,9 @@ /* define if libpcap has pcap_dump_ftell() */ #undef HAVE_PCAP_DUMP_FTELL +/* Define to 1 if you have the `pcap_dump_ftell64' function. */ +#undef HAVE_PCAP_DUMP_FTELL64 + /* Define to 1 if you have the `pcap_findalldevs' function. */ #undef HAVE_PCAP_FINDALLDEVS |