zephyr/net/ip/tinydtls
Jukka Rissanen 664df6db68 net: tinydtls: Allow bigger IPv6 packet to be sent
Use net_buf when sending data in order to allow bigger
messages to be sent. Earlier the max. msg length was
200 bytes, now it is 1280 bytes.

Change-Id: Id5550de45b61c6fa6410258776cd8240efb1570e
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2016-02-05 20:15:24 -05:00
..
aes net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
doc net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
ecc net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
examples/contiki net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
platform-specific net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
sha2 net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
tests net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
.gitignore net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
alert.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
ccm.c net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
ccm.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
configure.in net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
crypto.c net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
crypto.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
debug.c net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
debug.h net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
dtls_time.c net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
dtls_time.h net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
dtls.c net: tinydtls: Allow bigger IPv6 packet to be sent 2016-02-05 20:15:24 -05:00
dtls.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
global.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
hmac.c net: tinydtls: The library compiles correctly 2016-02-05 20:15:23 -05:00
hmac.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
LICENSE net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
Makefile.in net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
Makefile.tinydtls net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
netq.c net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
netq.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
numeric.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
peer.c net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
peer.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
prng.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
README net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
session.c net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
session.h net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
state.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
t_list.h net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00
tinydtls.h.in net: tinydtls: Initial commit 2016-02-05 20:15:23 -05:00

CONTENTS 

This library contains functions and structures that can help
constructing a single-threaded UDP server with DTLS support in
C99. The following components are available:

* dtls
  Basic support for DTLS with pre-shared key mode.

* tests
  The subdirectory tests contains test programs that show how each
  component is used. 

BUILDING

When using the code from the git repository at sourceforge, invoke
'autoreconf' to re-create the configure script. To build for Contiki,
place tinydtls into Contiki's apps directory and call 
  ./configure --with-contiki.

After configuration, invoke make to build the library and associated
test programs. To add tinydtls as Contiki application, drop it into
the apps directory and add the following line to your Makefile:

  APPS += tinydtls/aes tinydtls/sha2 tinydtls/ecc tinydtls