123
Diff: utility/uip_debug.h
- Revision:
- 1:01c2344f98a3
- Parent:
- 0:5350a66d5279
diff -r 5350a66d5279 -r 01c2344f98a3 utility/uip_debug.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utility/uip_debug.h Thu Nov 20 21:26:54 2014 +0000 @@ -0,0 +1,14 @@ +#ifndef UIP_DEBUG_H + #define UIP_DEBUG_H +extern "C" +{ + #include "uip.h" +} +class UIPDebug +{ +public: + static void uip_debug_printconns(void); + static bool uip_debug_printcon(struct uip_conn* lhs, struct uip_conn* rhs); + static void uip_debug_printbytes(const uint8_t* data, uint8_t len); +}; +#endif