/* * 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 "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, }; ository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Crispin <john@phrozen.org>2016-07-18 14:40:50 +0200
committerMark Brown <broonie@kernel.org>2016-07-18 13:46:23 +0100
commitd236b3ee5bb13f53ed60ccc6f704a13b923d2952 (patch)
tree8520625b19da695ea8a7766b524161a8427aa3e0 /Documentation
parent1a695a905c18548062509178b98bc91e67510864 (diff)
regulator: Add document for MT6323 regulator
Signed-off-by: John Crispin <john@phrozen.org> Cc: devicetree@vger.kernel.org Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')