WTP can save json now.
FossilOrigin-Name: 9670c29689c90b8e4378e10b56682028dd690d58e1a69da0f584c4c770cd2110
This commit is contained in:
@ -29,6 +29,8 @@
|
||||
#include "intavltree.h"
|
||||
|
||||
|
||||
|
||||
|
||||
/* Generic functions and structs */
|
||||
void * cw_actionlist_add(struct avltree *t, void *a, size_t s);
|
||||
|
||||
@ -51,9 +53,13 @@ struct cw_action_in{
|
||||
uint8_t mand;
|
||||
};
|
||||
|
||||
typedef int(*cw_action_fun_t)(struct conn *,struct cw_action_in *,uint8_t*,int ,struct sockaddr *);
|
||||
|
||||
typedef struct cw_action_in cw_action_in_t;
|
||||
|
||||
extern cw_action_fun_t cw_set_msg_end_callback(struct conn *conn,
|
||||
int capwap_state,int msg_id, cw_action_fun_t callback);
|
||||
|
||||
|
||||
typedef struct avltree * cw_actionlist_in_t;
|
||||
|
||||
@ -69,6 +75,9 @@ extern cw_action_in_t *cw_actionlist_in_set_msg_end_callback(cw_actionlist_in_t
|
||||
int len,struct sockaddr *from));
|
||||
|
||||
|
||||
cw_action_fun_t cw_set_msg_end_callback(struct conn *conn,
|
||||
int capwap_state,int msg_id, cw_action_fun_t callback);
|
||||
|
||||
/* Definitions for outgoing messages */
|
||||
struct cw_action_out{
|
||||
uint32_t msg_id;
|
||||
|
Reference in New Issue
Block a user