2016-02-23 19:38:10 +01:00
|
|
|
#ifndef __MOD_CAPWAP_H
|
|
|
|
#define __MOD_CAPWAP_H
|
|
|
|
|
2016-03-04 21:42:39 +01:00
|
|
|
struct mod_ac *mod_capwap_ac();
|
|
|
|
struct mod_wtp *mod_capwap_wtp();
|
2016-02-23 19:38:10 +01:00
|
|
|
|
2016-02-26 18:52:29 +01:00
|
|
|
|
2016-03-04 21:42:39 +01:00
|
|
|
extern int capwap_in_wtp_descriptor(struct conn *conn, struct cw_action_in *a,
|
|
|
|
uint8_t * data, int len, struct sockaddr *from);
|
2016-02-26 18:52:29 +01:00
|
|
|
|
2016-03-04 21:42:39 +01:00
|
|
|
extern int capwap_in_wtp_board_data(struct conn *conn, struct cw_action_in *a,
|
|
|
|
uint8_t * data, int len, struct sockaddr *from);
|
|
|
|
|
|
|
|
extern int capwap_out_wtp_descriptor(struct conn *conn, struct cw_action_out *a,
|
|
|
|
uint8_t * dst);
|
2016-02-26 18:52:29 +01:00
|
|
|
|
2016-03-05 10:11:39 +01:00
|
|
|
extern int capwap_out_ac_descriptor(struct conn *conn,struct cw_action_out * a,uint8_t *dst);
|
|
|
|
|
2016-02-26 18:52:29 +01:00
|
|
|
|
2016-02-23 19:38:10 +01:00
|
|
|
#endif
|