Inital commit.

FossilOrigin-Name: 9da7cbe914e6f056bfbaed633219d34df26d12d7991097d2ffac288d66a1b139
This commit is contained in:
7u83@mail.ru
2015-04-05 00:10:37 +00:00
parent 412c956673
commit 67f83ca65f
8 changed files with 332 additions and 0 deletions

18
src/capwap/dbg.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef __DBG_H
#define __DBG_H
void cw_dbg_elem_(int msg, int msgelem, const uint8_t * msgbuf, int len);
#ifdef WITH_CW_LOG_DEBUG
#define cw_dbg_elem(msgtype,msgelemtype,msgbuf,msglen) cw_dbg_elem_(msgtype,msgelemtype,msgbuf,msglen)
#else
#define cw_dbg_elem(...)
#endif
#endif