/* * 6LoWPAN Extension Header compression according to RFC7400 * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #include "nhc.h" #define LOWPAN_GHC_EXT_ROUTE_IDLEN 1 #define LOWPAN_GHC_EXT_ROUTE_ID_0 0xb2 #define LOWPAN_GHC_EXT_ROUTE_MASK_0 0xfe static void route_ghid_setup(struct lowpan_nhc *nhc) { nhc->id[0] = LOWPAN_GHC_EXT_ROUTE_ID_0; nhc->idmask[0] = LOWPAN_GHC_EXT_ROUTE_MASK_0; } LOWPAN_NHC(ghc_ext_route, "RFC7400 Routing Extension Header", NEXTHDR_ROUTING, 0, route_ghid_setup, LOWPAN_GHC_EXT_ROUTE_IDLEN, NULL, NULL); module_lowpan_nhc(ghc_ext_route); MODULE_DESCRIPTION("6LoWPAN generic header routing extension compression"); MODULE_LICENSE("GPL"); 8391b85e00eb544e6cf047ee0160ee9938'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/hsr/hsr_device.c
nge='this.form.submit();'>
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
Diffstat (limited to 'Documentation/devicetree/bindings/iio/adc/brcm,iproc-static-adc.txt')
id=e4781421e883340b796da5a724bda7226817990b'>patch)
tree67746198bd1441abdae6a35a39fc921ff751049d /include
parent0a0a8d6b0e88d947d7ab3198b325e31f677bebc2 (diff)
netfilter: merge udp and udplite conntrack helpers
udplite was copied from udp, they are virtually 100% identical. This adds udplite tracker to udp instead, removes udplite module, and then makes the udplite tracker builtin. udplite will then simply re-use udp timeout settings. It makes little sense to add separate sysctls, nowadays we have fine-grained timeout policy support via the CT target. old: text data bss dec hex filename 1633 672 0 2305 901 nf_conntrack_proto_udp.o 1756 672 0 2428 97c nf_conntrack_proto_udplite.o 69526 17937 268 87731 156b3 nf_conntrack.ko new: text data bss dec hex filename 2442 1184 0 3626 e2a nf_conntrack_proto_udp.o 68565 17721 268 86554 1521a nf_conntrack.ko Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')