Adam Dunkels
99f541e8fd
Updated to the latest uip-ds6-route API
2012-11-27 23:04:34 +01:00
Adam Dunkels
4218a733c9
Add the uipv6 route function uip-ds6-route.c
2012-11-27 23:04:34 +01:00
Adam Dunkels
5406dd8b18
Updated to use the new uip-ds6-route API
2012-11-27 23:04:34 +01:00
Adam Dunkels
43ecad5a99
Call the route callback API functions.
2012-11-27 23:04:33 +01:00
Adam Dunkels
a9cab81d4e
Added macros that allow handling IPv4 addresses even when uIP is configured to be an IPv6 stack
2012-11-27 23:04:33 +01:00
Adam Dunkels
afe13b22bc
Rewrote the uIP IPv6 route handling code. Instead of being nested deeply inside the uip-ds6.c file, the route management code is now in a separate file, uip-ds6-route.c. This file presents a lib/list.h API for the routes, which makes the route list much easier to use. Additionally, the uip-ds6-route.c file adds a callback API that invokes a callback when routes are added and removed.
2012-11-27 23:04:33 +01:00
Adam Dunkels
b2063953ba
Added a configuration option, UIP_SPLIT_CONF_SIZE, for setting the threshold at which point TCP packets get split into two.
2012-11-27 23:04:33 +01:00
Adam Dunkels
f561bfc205
Added a function simple_udp_sendto_port() for sending a UDP packet to a specified port.
2012-11-27 23:04:32 +01:00
Adam Dunkels
5c5545ba7d
Code style and debugging updates
2012-11-27 23:04:32 +01:00
Adam Dunkels
289a01b389
Added explicit functions uiplib_ip6addrconv and uiplib_ip4addrconv for converting IPv6 and IPv4 addresses, regardless of whether uIP was configured to run as an IPv4 or an IPv6 stack.
2012-11-27 23:04:32 +01:00
Adam Dunkels
0bad2b1748
Added a configuration option to annotate IP transmissions with red arrows in Cooja.
2012-11-27 23:04:32 +01:00
Adam Dunkels
b24157631f
Made nd6 maximum unicast solicitation messages configurable
2012-11-27 23:04:32 +01:00
Adam Dunkels
2a2175a214
Make RPL DIS transmission interval random in the interval [0, INTERVAL/2]. This is needed to avoid synchronization in large RPL networks.
2012-11-27 23:04:31 +01:00
Adam Dunkels
2396f9b8ea
Made DIO interval processing a little easier to follow. Explicitly state that the delay is handled as clock timer ticks.
2012-11-27 23:04:31 +01:00
Adam Dunkels
8538aaf655
Made RPL DAO latency configurable
2012-11-27 23:04:31 +01:00
Adam Dunkels
357b13b3d3
Correctly handle upward and downward routes according to Section 1.2 of RFC6550
2012-11-27 23:04:31 +01:00
Adam Dunkels
15deb37e64
Updated DAG version processing to occur even for infinite rank DIOs. This makes it possible for the RPL root to infer the DAG version number from a network that hasn't had a root for a while, and where the rank has increased to infinity.
2012-11-27 23:04:30 +01:00
Adam Dunkels
db7cb567f5
Updated the RPL code to better match the Contiki code style
2012-11-27 23:04:30 +01:00
Nicolas Tsiftes
0cb4bf4808
Merge pull request #45 from adamdunkels/netstack-encryption
...
Add support for encryption and decryption calls
2012-11-27 06:30:38 -08:00
Adam Dunkels
cb7842bd16
Added support for encryption and decryption of the packetbuf if macros
...
NETSTACK_ENCRYPT and NETSTACK_DECRYPT are defined. Those are intended
to be called as functions NETSTACK_ENCRYPT() and NETSTACK_DECRYPT() to
encrypt and decrypt the packetbuf, respectively. If needed, an
initialization function by the name NETSTACK_ENCRYPTION_INIT() can
also be defined.
2012-11-25 12:05:00 +01:00
Nicolas Tsiftes
63d205e4a2
Merge pull request #44 from adamdunkels/rime-nullptr-guard
...
Rime NULL pointer guards
2012-11-24 11:14:02 -08:00
Adam Dunkels
0cd2f48d6e
Added NULL pointer guards
2012-11-22 11:55:01 +01:00
Nicolas Tsiftes
0a8183d295
Merge pull request #42 from adamdunkels/fix-micaz-build
...
Fix micaz build
2012-11-22 01:21:00 -08:00
Nicolas Tsiftes
c7434df043
Merge pull request #43 from adamdunkels/add-more-travis-tests
...
Add most of the Contiki tests to the Travis build
2012-11-22 01:20:03 -08:00
Adam Dunkels
4d811b41cc
Structured the Contiki tests according to what they are supposed to test and broke them out as multiple parallel jobs.
2012-11-22 08:12:39 +01:00
Adam Dunkels
91206e2249
Avoid multiple definitions of NETSTACK_CONF_MAC. Turn on RPL by default.
2012-11-21 20:11:22 +01:00
Adam Dunkels
d51d3f6b3e
Remove conditionals around RPL extension header #defines and typedefs. With the conditional, it wasn't possible to compile the rpl-ext-header.c file. Since #defines and typedefs and 'free' at runtime, we gain nothing by having them conditional.
2012-11-21 20:11:22 +01:00
Adam Dunkels
3a669d0caa
Merge pull request #41 from adamdunkels/fix-native-build
...
Make gcc default LD, and allow override with LD_OVERRIDE
2012-11-21 11:09:48 -08:00
Adam Dunkels
db41a51ae6
Make gcc default LD, and allow override with LD_OVERRIDE
2012-11-21 19:46:31 +01:00
Adam Dunkels
135ae838de
Merge pull request #40 from errordeveloper/cross-native
...
Enable `native` target for cross-compiling
2012-11-21 10:14:15 -08:00
Ilya Dmitrichenko
d0f18e5d04
Fixed LDFLAGS for cross-compiling of "native"
2012-11-21 18:09:29 +00:00
Ilya Dmitrichenko
092c69639c
Enable native
target for cross-compiling -
...
by now it would have worked if you set CC via
command line (e.g. `make CC=clang`, though it
wouldn't work when CC is set in the platform
makefile which includes `Makefile.native`.
2012-11-21 18:09:10 +00:00
Ilya Dmitrichenko
6690c5f13e
Fix hardcoded reference to nm(1)
2012-11-21 18:09:05 +00:00
Fredrik Österlind
9f6689e538
Merge pull request #13 from adamdunkels/contiki-code-style-tools
...
Contiki code style tools update
2012-11-21 02:49:32 -08:00
Fredrik Österlind
9b447d2b76
Merge pull request #38 from adamdunkels/cleanup-of-old-mac-and-rdc-code
...
Remove old unused TDMA-based MAC and RDC code
2012-11-21 02:47:41 -08:00
Fredrik Österlind
150cb33b94
Merge pull request #16 from cmorty/COOJA_DGRM
...
DGRM-Related Patches
2012-11-21 02:44:13 -08:00
Nicolas Tsiftes
39919655df
Merge pull request #39 from adamdunkels/node-id
...
Fixed node-id compilation problems on the micaz and exp5438 platforms
2012-11-21 00:18:11 -08:00
Adam Dunkels
e178787999
Fixed compilation problems on the micaz and exp5438 platforms due to the node-id change
2012-11-20 21:16:50 +01:00
Adam Dunkels
6ee1f72486
Removed old unused TDMA-based MAC and RDC code
2012-11-20 20:48:34 +01:00
Adam Dunkels
f6f9df802c
Updated script per suggestion by @g-oikonomou to allow script to operate on files in subdirectories
2012-11-20 20:11:39 +01:00
Adam Dunkels
9131c4183b
Allow contiki-indent to operate on multiple files at once
2012-11-20 20:11:39 +01:00
Adam Dunkels
c31a907ccd
A small tool that shows the diff between the original file and the file produced by running it through contiki-indent
2012-11-20 20:11:39 +01:00
Nicolas Tsiftes
5a1661dfbf
Merge pull request #37 from adamdunkels/node-id
...
Cleanup of the node-id.h files
2012-11-20 11:08:37 -08:00
Adam Dunkels
ec8c7e9be0
Cleanup of the node-id.h files. The node-id.h file contains
...
declarations of functions for setting and getting a node ID number, a
functionality that exists on many platforms. Since this functionality
was not considered part of the Contiki core, each platform defined its
own node-id.h file. This commit attempts to clean this up by
collecting the node-id.h into a core/sys/node-id.h file that replaces
the old node-id.h files from the platform directories.
2012-11-20 19:59:46 +01:00
Nicolas Tsiftes
9392ece509
Merge pull request #35 from malvira/travis-econotag
...
have travis build TARGET=econotag instead of TARGET=redbee-econotag
2012-11-20 10:55:44 -08:00
Nicolas Tsiftes
90ad0d58f8
Merge pull request #36 from malvira/econotag-er-no-static-routes
...
don't use static routing with econotag platform
2012-11-20 10:35:57 -08:00
Mariano Alvira
e4a383d61d
don't use static routing with econotag platform
2012-11-20 13:22:28 -05:00
Mariano Alvira
a1c2e471a8
have travis build TARGET=econotag instead of TARGET=redbee-econotag
2012-11-20 12:36:55 -05:00
Adam Dunkels
d7763e13db
Merge pull request #33 from nvt/coffee-manager
...
Coffee manager
2012-11-20 04:43:08 -08:00
Adam Dunkels
12c462ada0
Merge pull request #14 from errordeveloper/travis
...
Travis CI (with split cooja tests and multi-target support)
2012-11-20 03:43:10 -08:00