summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Clean up signed vs. unsigned, do more error checking in the parser.Guy Harris2018-11-225-524/+631
* Count only packets that were handed to the callback.Guy Harris2018-11-201-1/+1
* Require block lengths to be a multiple of 4.Guy Harris2018-11-111-51/+8
* Fix a couple of issues.Guy Harris2018-11-101-0/+77
* Squelch an unreachable code warning.Guy Harris2018-11-101-4/+13
* Squelch some warnings.Guy Harris2018-11-101-2/+3
* Don't sign-extend characters when you pass them to ctype.h macros.Guy Harris2018-11-101-6/+7
* Squelch more stupid "might be clobbered by longjmp" nonsense.Guy Harris2018-11-101-4/+16
* See if *this* squelches the "clobbered by longjmp" warnings.Guy Harris2018-11-102-4/+15
* Have separate full definitions for some additional routines.Guy Harris2018-11-101-4/+18
* Make declaration match definition.Guy Harris2018-11-101-2/+2
* Squelch warnings about unreachable code.Guy Harris2018-11-102-177/+169
* Wrong variable.Guy Harris2018-11-101-2/+2
* Squelch some bogus "might be clobbered by longjmp" warnings.Guy Harris2018-11-101-2/+3
* Have separate full definitions for pcap_can_set_rfmon_bpf().Guy Harris2018-11-101-2/+10
* Squelch a narrowing warning.Guy Harris2018-11-091-1/+1
* finish_parse() has to catch bpf_error() exceptions, too.Guy Harris2018-10-293-3/+11
* Catch errors reported by gen_retblk().Guy Harris2018-10-291-1/+9
* Fix another place where longjmp() was called without a setjmp().Guy Harris2018-10-291-4/+9
* We can't longjmp out of sdup(), as it's called in the lexical analyzer.Guy Harris2018-10-282-19/+51
* Another attempt to fix a "clobbered by longjmp" warning.Guy Harris2018-10-271-2/+4
* Attempt to squelch a "clobbered by longjmp" warning.Guy Harris2018-10-271-4/+8
* Don't call setjmp in code we didn't write.Guy Harris2018-10-275-796/+1217
* Fix compiling with optimizer debugging enabled.Guy Harris2018-10-261-16/+23
* Handle negation in a way that doesn't upset compilers or UBSan.Guy Harris2018-10-262-4/+23
* Make qerr const.Guy Harris2018-10-261-1/+1
* Don't longjmp out of the generated parser.Guy Harris2018-10-254-661/+707
* Do the sanitizer stuff later.Guy Harris2018-10-241-81/+87
* Attempt to deal with OSes that require you to link with -lpthread.Guy Harris2018-10-244-4/+26
* Add an ENABLE_SANITIZERS list variable to enable various sanitizers.Guy Harris2018-10-241-1/+92
* Handle all protocol qualifiers in gen_proto().Guy Harris2018-10-241-82/+129
* Report an error for too-large VLAN tags, PPPoE session numbers, and Geneve VNIs.Guy Harris2018-10-233-31/+48
* Report an error for MPLS labels that don't fit in 20 bits.Guy Harris2018-10-233-5/+9
* Only initialize np to NULL for Linux's getnetbyname_r().Guy Harris2018-10-231-2/+17
* Merge pull request #774 from catenacyber/uninitGuy Harris2018-10-231-1/+1
|\
| * Initializing np value to NULLPhilippe Antoine2018-10-231-1/+1
|/
* allocated DLT_EBHSCR for elektrobit for EBHSCRMichael Richardson2018-10-222-2/+27
* Catch shifts > 31 bits generated by the optimizer.Guy Harris2018-10-222-1/+17
* Add checks for invalid "direction" qualifiers for "decnet".Guy Harris2018-10-221-2/+23
* Handle *all* protocol qualifiers in gen_host() - even link/tr/etc.Guy Harris2018-10-221-0/+3
* Lines end with NL on UN*X and CR-LF on Windows.Guy Harris2018-10-191-1/+1
* Another check for a too-large shift.Guy Harris2018-10-191-0/+6
* Handle all protocol qualifiers in gen_host6().Guy Harris2018-10-191-37/+58
* Add a flag to allow peeking at messages in sock_recv().Guy Harris2018-10-192-1/+7
* Catch another place where we divide by or take a modulus by zero.Guy Harris2018-10-181-2/+16
* Plug some memory leaks.Guy Harris2018-10-173-21/+108
* Plug some memory leaks.Guy Harris2018-10-174-43/+49
* Fix the semantics of BPF_LSH and BPF_RSH for shifts >= 32 bits.Guy Harris2018-10-161-2/+8
* Add checks for invalid qualifiers for "port" and "portrange".Guy Harris2018-10-161-85/+133
* Don't shift by more than 31 bit positions.Guy Harris2018-10-161-2/+30