/* * 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, };
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2016-04-27 16:07:56 -0700
committerJaegeuk Kim <jaegeuk@kernel.org>2016-05-07 10:32:18 -0700
commitb7a15f3dbe3f3d009360273b62a633e47a1a65d6 (patch)
treeecc43e8ba8c57ee6f013de1465ea645f71c1093c
parent3f8ab270855b0b461995da5dc48dce9461c85d94 (diff)
f2fs: introduce macros for proc entries
This adds macros to be used multiple proc entries. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>