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 /CMakeLists.txt | |
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 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9a1df679..095d1f9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -981,6 +981,7 @@ set(NETDISSECT_SOURCE_LIST_C print-igmp.c print-igrp.c print-ip.c + print-ip-demux.c print-ip6.c print-ip6opts.c print-ipcomp.c |