hardware verson sent in disc req
FossilOrigin-Name: f1bcc6902585c7547cc4ab386d0ba303b2739a18dc7e8589fbf07ede838cf326
This commit is contained in:
@ -3,6 +3,9 @@
|
||||
#include "cw/capwap_items.h"
|
||||
|
||||
|
||||
#include "mod_capwap.h"
|
||||
|
||||
|
||||
static cw_action_in_t actions_in[] = {
|
||||
|
||||
|
||||
@ -67,7 +70,7 @@ static cw_action_out_t actions_out[] = {
|
||||
.msg_id = CW_MSG_DISCOVERY_REQUEST,
|
||||
.elem_id = CW_ELEM_WTP_DESCRIPTOR,
|
||||
.item_id = CW_ITEM_WTP_DESCRIPTOR,
|
||||
.out = cw_out_wtp_descriptor,
|
||||
.out = capwap_out_wtp_descriptor,
|
||||
//.get = cw_out_get_outgoing,
|
||||
.mand = 1
|
||||
}
|
||||
|
@ -1,15 +1,18 @@
|
||||
#ifndef __MOD_CAPWAP_H
|
||||
#define __MOD_CAPWAP_H
|
||||
|
||||
struct mod_ac * mod_capwap_ac();
|
||||
struct mod_wtp * mod_capwap_wtp();
|
||||
struct mod_ac *mod_capwap_ac();
|
||||
struct mod_wtp *mod_capwap_wtp();
|
||||
|
||||
|
||||
extern int capwap_in_wtp_descriptor(struct conn *conn, struct cw_action_in *a, uint8_t * data,
|
||||
int len, struct sockaddr *from);
|
||||
extern int capwap_in_wtp_descriptor(struct conn *conn, struct cw_action_in *a,
|
||||
uint8_t * data, int len, struct sockaddr *from);
|
||||
|
||||
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_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);
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user