2016-02-29 07:49:47 +01:00
|
|
|
#ifndef __CISCO_H
|
|
|
|
#define __CISCO_H
|
|
|
|
|
2016-03-03 20:46:20 +01:00
|
|
|
#include "cw/conn.h"
|
|
|
|
#include "cw/action.h"
|
2016-02-29 07:49:47 +01:00
|
|
|
|
2016-03-19 12:57:47 +01:00
|
|
|
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);
|
2016-03-20 15:54:54 +01:00
|
|
|
extern int cisco_out_board_data_options(struct conn *conn, struct cw_action_out *a,
|
|
|
|
uint8_t * dst);
|
|
|
|
|
2016-03-12 03:57:43 +01:00
|
|
|
|
2016-02-29 07:49:47 +01:00
|
|
|
|
2016-03-19 12:57:47 +01:00
|
|
|
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);
|
2016-03-27 16:43:47 +02:00
|
|
|
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);
|
2016-02-29 07:49:47 +01:00
|
|
|
|
|
|
|
#endif
|