tech-net archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: ipsec tests newly failing after pcap update



campbell+netbsd-tech-net%mumble.net@localhost (Taylor R Campbell) writes:

>They all look similar -- `ipip-proto-4' is no longer appearing in
>output of `tcpdump -n -e -r ...'.  Here's an example:

old (print-ip.c):

        case IPPROTO_IPV4:
                /* DVMRP multicast tunnel (ip-in-ip encapsulation) */
                ip_print(ndo, ipds->cp, ipds->len);
                if (! ndo->ndo_vflag) {
                        ND_PRINT((ndo, " (ipip-proto-4)"));  
                        return;
                }
                break;

new (print-ip-demux.c):

        case IPPROTO_IPV4:
                /* ipv4-in-ip encapsulation */
                ip_print(ndo, bp, length);
                break;

https://github.com/the-tcpdump-group/tcpdump/commit/cba9b77a98e9dde764abde71a899ee8937ca56e8



Home | Main Index | Thread Index | Old Index