diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-01-09 16:42:59 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-02-14 23:08:44 +0100 |
commit | ff0fcc2987b42857d233e8a72c7476fb1e520110 (patch) | |
tree | 8f5c5f0e10a832de8a6f8869e831614264ff7584 /net/6lowpan/Makefile | |
parent | cc6ed2684751b0a1074b37c080983b6ce737ed22 (diff) | |
download | linux-ff0fcc2987b42857d233e8a72c7476fb1e520110.tar.gz linux-ff0fcc2987b42857d233e8a72c7476fb1e520110.tar.bz2 linux-ff0fcc2987b42857d233e8a72c7476fb1e520110.zip |
6lowpan: nhc: add other known rfc6282 compressions
This patch adds other known rfc6282 compression formats to the nhc
framework. These compression formats are known but not implemented yet.
For now this is useful to printout a warning which compression format
isn't supported.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Cc: Martin Townsend <mtownsend1973@gmail.com>
Reviewed-by: Stefan Schmidt <s.schmidt@samsung.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/6lowpan/Makefile')
-rw-r--r-- | net/6lowpan/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/6lowpan/Makefile b/net/6lowpan/Makefile index abf551d31881..eb8baa72adc8 100644 --- a/net/6lowpan/Makefile +++ b/net/6lowpan/Makefile @@ -3,4 +3,10 @@ obj-$(CONFIG_6LOWPAN) += 6lowpan.o 6lowpan-y := iphc.o nhc.o #rfc6282 nhcs +obj-$(CONFIG_6LOWPAN_NHC_DEST) += nhc_dest.o +obj-$(CONFIG_6LOWPAN_NHC_FRAGMENT) += nhc_fragment.o +obj-$(CONFIG_6LOWPAN_NHC_HOP) += nhc_hop.o +obj-$(CONFIG_6LOWPAN_NHC_IPV6) += nhc_ipv6.o +obj-$(CONFIG_6LOWPAN_NHC_MOBILITY) += nhc_mobility.o +obj-$(CONFIG_6LOWPAN_NHC_ROUTING) += nhc_routing.o obj-$(CONFIG_6LOWPAN_NHC_UDP) += nhc_udp.o |