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
doc
ecc
examples/contiki
platform-specific
sha2
tests
.gitignore
alert.h
ccm.c
ccm.h
configure.in
crypto.c
crypto.h
debug.c
debug.h
dtls_time.c
dtls_time.h
dtls.c
dtls.h
global.h
hmac.c
hmac.h
LICENSE
Makefile.in
Makefile.tinydtls
netq.c
netq.h
numeric.h
peer.c
peer.h
prng.h
README
session.c
session.h
state.h
t_list.h
tinydtls.h.in

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