-
Here's a fix I had to make to util/ccn-lite-peek.c so the sendto call would work (ccntlv branch on Ubuntu Linux):
```
@@ -324,7 +323,7 @@
len = mkInterest(prefix, &nonce, out, sizeof(out));…
-
I ran into a problem with a buffer overwrite problem (ccntlv branch on Ubuntu Linux). Couldn't find the cause; here's the workaround:
```
@@ -200,11 +199,11 @@
// --------------------------------…
-
Here's a fix I had to make to util/ccn-lite-peek.c so the sendto call would work (ccntlv branch on Ubuntu Linux):
```
@@ -324,7 +323,7 @@
len = mkInterest(prefix, &nonce, out, sizeof(out));…
-
```
$ git grep timeval
ccn-lite-relay.c:struct timeval *
ccn-lite-relay.c: static struct timeval now;
ccn-lite-relay.c: ccnl_get_timeval(&now);
ccn-lite-relay.c: usec = timevaldelta(&(t->…
-
in case an interest needs to get re-transmitted, its currently send again. But if nonces are enabled, it is dropped by any receiver who had seen the original interest.
-
Meaning of debug_level not documented or defined.
suggestion:
- 1 fatal
- 2 error
- 3 warning
- 4 info
- 5 debug
- 6 verbose
-
https://github.com/RIOT-OS/RIOT/blob/master/sys/net/ccn_lite/ccnl-pdu.c#L126 and https://github.com/RIOT-OS/RIOT/blob/master/sys/net/ccn_lite/ccnl-pdu.c#L158 could use htons instead of bit shifting "b…
-
```
examples/ccn-lite-client$ LANG=C make BOARD=avsextrem
…
skipjack.c: In function 'skipjack_setup_key':
skipjack.c:328:5: warning: dereferencing type-punned pointer will break strict-aliasing rules …
-
-
Refer also to RIOT-OS/thirdparty_boards#25