More work on CW VM code ..
FossilOrigin-Name: 3b0cb324535527b32d0e938b03151c75f6100ca2059fc121e2c4d350a8caf8a4
This commit is contained in:
@ -5,11 +5,13 @@
|
||||
|
||||
void cw_dbg_elem_(struct conn * conn, int msg, int msgelem, const uint8_t * msgbuf, int len);
|
||||
void cw_dbg_missing_mand(int level,struct conn *conn,cw_action_in_t ** ml,int n,cw_action_in_t *a);
|
||||
void cw_dbg_packet(struct conn *conn, uint8_t * packet, int len);
|
||||
|
||||
|
||||
#ifdef WITH_CW_LOG_DEBUG
|
||||
|
||||
#define cw_dbg_elem(conn,msgtype,msgelemtype,msgbuf,msglen) cw_dbg_elem_(conn,msgtype,msgelemtype,msgbuf,msglen)
|
||||
#define cw_dbg_elem(conn,msgtype,msgelemtype,msgbuf,msglen)\
|
||||
cw_dbg_elem_(conn,msgtype,msgelemtype,msgbuf,msglen)
|
||||
|
||||
#else
|
||||
|
||||
@ -17,3 +19,20 @@ void cw_dbg_missing_mand(int level,struct conn *conn,cw_action_in_t ** ml,int n,
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @defgroup DebugOptions Dbug Options
|
||||
* @{
|
||||
*/
|
||||
#define CW_DBG_PKT_IN 0x00000001 /* Headers of incoming CAPWAP packets */
|
||||
#define CW_DBG_PKT_OUT 0x00000002 /* Headers of outgoing CAPWAP packets */
|
||||
|
||||
|
||||
|
||||
/**@}*/
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user