Michael Frey

Results 21 issues of Michael Frey

RIOT maps the various logging calls of ccn-lite to ``printf``. Below is a snippet from ``ccnl-riot-logging.h`` (in ccn-lite). ```C 55 #define DEBUGMSG(LVL, ...) do { \ 56 if ((LVL)>debug_level) break;...

wontfix

Hi, I probably should find a job where the main task is to break things. Anyway, enabling logging by setting ``debug_level`` to ``TRACE`` crashes RIOT. I'm using RIOTs [ccn-lite-relay](https://github.com/RIOT-OS/RIOT/tree/master/examples/ccn-lite-relay) example...

bug

In order to engage more fellow hackers to contribute to CCN-lite, I would propose that we first adapt [RIOTs development procedures](https://github.com/RIOT-OS/RIOT/wiki/Development-procedures) for CCN-lite and second, have a look at [RIOTs...

enhancement
question

Hi, as pointed out by @cgundogan in PR #222 it would be awesome if we could have the (doxygen generated) documentation online at a central point, either something like http://doc.ccn-lite.net/...

enhancement
question

Hi, I've encountered an issue while using ``ccnl_mkContentObject``. Basically, the pointer to the content (returned via the function) does not match the content I've passed to the function. I've started...

bug

Hi, the interest lifetime in NDN interests is set by default to ``CCNL_INTEREST_TIMEOUT``. The constant is in seconds, but the specification states that the lifetime is milliseconds. In ``ccnl-relay.c`` ```C...

Hi, I think that there are multiple issues with various ``ccnl__prependBlob`` functions. I've picked the ``ccnl_ndntlv_prependBlob`` as an example. The ``len`` parameter refers to the size of the ``blob`` and...

bug
vulnerability

We should use ``size_t`` for type safety purposes over ``int``. Instead of ```C static inline void* ccnl_malloc(int s); ``` It should be ```C #include static inline void* ccnl_malloc(size_t s); ```...

enhancement

We should introduce const pointers/pointers to const wherever it applies, i.e. one cannot change the address a pointer is pointing to or cannot change the value a pointer is pointing...

enhancement

Hi, as far as I understood CCN-lite supports CCNx management operations (enabled via ``USE_MGMT`` flag). Currently, I'm trying to understand how forwarding in CCN-lite works and found in the ``ccnl_fwd_handleInterest``...

question