diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-01-09 18:42:57 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-02-15 01:08:44 +0300 |
commit | 92aa7c65d295f3cbb96904afe335f683e55584b8 (patch) | |
tree | 8e7081841af43fa90e03fc44cfa95405aa7822bb /net/6lowpan/Makefile | |
parent | 129a76931a6e90ddca586ba6e4292b5b429488bc (diff) | |
download | linux-92aa7c65d295f3cbb96904afe335f683e55584b8.tar.xz |
6lowpan: add generic nhc layer interface
This patch adds a generic next header compression layer interface. There
exists various methods to do a header compression after 6LoWPAN header
to save payload. This introduce a generic nhc header which allow a
simple adding of a new header compression format instead of a static
implementation inside the 6LoWPAN header compression and uncompression
function.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/6lowpan/Makefile b/net/6lowpan/Makefile index 415886bb456a..4215602a25bd 100644 --- a/net/6lowpan/Makefile +++ b/net/6lowpan/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_6LOWPAN) := 6lowpan.o -6lowpan-y := iphc.o +6lowpan-y := iphc.o nhc.o |