1be29b9e52
FossilOrigin-Name: d8ca481a69c4dde67d707f190a797da1d3712c703842f74dd69495124a4ac583
35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
#ifndef __CISCO_H
|
|
#define __CISCO_H
|
|
|
|
#include "cw/conn.h"
|
|
#include "cw/action.h"
|
|
|
|
extern int cisco_out_ap_timesync(struct conn *conn, struct cw_action_out *a,
|
|
uint8_t * dst);
|
|
extern int cisco_in_wtp_descriptor(struct conn *conn, struct cw_action_in *a,
|
|
uint8_t * data, int len, struct sockaddr *from);
|
|
extern int cisco_out_ac_descriptor(struct conn *conn, struct cw_action_out *a,
|
|
uint8_t * dst);
|
|
extern int cisco_out_wtp_descriptor(struct conn *conn, struct cw_action_out *a,
|
|
uint8_t * dst);
|
|
extern int cisco_out_board_data_options(struct conn *conn, struct cw_action_out *a,
|
|
uint8_t * dst);
|
|
|
|
|
|
|
|
extern int cisco_in_ac_descriptor(struct conn *conn, struct cw_action_in *a,
|
|
uint8_t * data, int len, struct sockaddr *from);
|
|
|
|
extern int cisco_in_radio_administrative_state_wtp(struct conn *conn,
|
|
struct cw_action_in *a, uint8_t * data,
|
|
int len, struct sockaddr *from);
|
|
int cisco_in_spam_vendor_specific(struct conn *conn, struct cw_action_in *a, uint8_t * data, int len,
|
|
struct sockaddr *from);
|
|
|
|
int cisco_in_telnet_ssh(struct conn *conn, struct cw_action_in *a, uint8_t * data, int len,
|
|
struct sockaddr *from);
|
|
|
|
int cisco_out_telnet_ssh(struct conn *conn,struct cw_action_out * a,uint8_t *dst);
|
|
|
|
#endif
|