diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-03-27 19:58:26 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-03-27 19:58:26 -0700 |
commit | 202051bb55f5e99fb304c4b68cfb2a729fe2d55e (patch) | |
tree | a05c9dedb222085c1f4d5d59065a43f8f6a1f872 /Makefile.in | |
parent | b8964b5f43a1b3ec5d1a3a1ee6025d3d881354c9 (diff) | |
download | tcpdump-202051bb55f5e99fb304c4b68cfb2a729fe2d55e.tar.gz |
Put IPv4/IPv6 protocol demultiplexing into a common routine.
That means less duplication of functionality - and less chance that
XXX-over-IPv4 will be handled but XXX-over-IPv6 won't be handled, or
*vice versa*. (CARP and VRRP were being handled over IPv4 but not over
IPv6; this fixes that.)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index f434268d..9176afcf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -144,6 +144,7 @@ LIBNETDISSECT_SRC=\ print-igmp.c \ print-igrp.c \ print-ip.c \ + print-ip-demux.c \ print-ip6.c \ print-ip6opts.c \ print-ipcomp.c \ |