/* * netsniff-ng - the packet sniffing beast * Copyright 2012 Markus Amend , Deutsche Flugsicherung GmbH * Subject to the GPL, version 2. * * IPv6 in IPv4 encapsulation described in RFC3056 */ #include #include #include /* for ntohs() */ #include "proto.h" #include "protos.h" #include "dissector_eth.h" #include "built_in.h" extern void ipv6(struct pkt_buff *pkt); extern void ipv6_less(struct pkt_buff *pkt); struct protocol ipv6_in_ipv4_ops = { .key = 0x29, .print_full = ipv6, .print_less = ipv6_less, }; sitory'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYan, Zheng <zyan@redhat.com>2016-08-04 08:43:33 +0800
committerIlya Dryomov <idryomov@gmail.com>2016-08-08 21:41:43 +0200
commite4d2b16a445f85b7dc3fc67b21756eca515e0c74 (patch)
treef56809a2002a559d3e1d07b4d4fd1c2038d35045
parent864364a29c26ed83b3eeca5fa278468dc3ae9ed4 (diff)
ceph: fix null pointer dereference in ceph_flush_snaps()
Signed-off-by: Yan, Zheng <zyan@redhat.com>