123

Committer:
hudakz
Date:
Mon Sep 15 11:12:30 2014 +0000
Revision:
0:5350a66d5279
rev. 00

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hudakz 0:5350a66d5279 1 #ifndef UIP_DEBUG_H
hudakz 0:5350a66d5279 2 #define UIP_DEBUG_H
hudakz 0:5350a66d5279 3 extern "C"
hudakz 0:5350a66d5279 4 {
hudakz 0:5350a66d5279 5 #include "uip.h"
hudakz 0:5350a66d5279 6 }
hudakz 0:5350a66d5279 7 class UIPDebug
hudakz 0:5350a66d5279 8 {
hudakz 0:5350a66d5279 9 public:
hudakz 0:5350a66d5279 10 static void uip_debug_printconns(void);
hudakz 0:5350a66d5279 11 static bool uip_debug_printcon(struct uip_conn* lhs, struct uip_conn* rhs);
hudakz 0:5350a66d5279 12 static void uip_debug_printbytes(const uint8_t* data, uint8_t len);
hudakz 0:5350a66d5279 13 };
hudakz 0:5350a66d5279 14 #endif