2018-03-17 12:32:40 +01:00
|
|
|
#ifndef __ACTUBE_AC_H
|
|
|
|
#define __ACTUBE_AC_H
|
|
|
|
|
2022-07-28 01:36:16 +02:00
|
|
|
#include "mavl.h"
|
|
|
|
#include "cw/mavltypes.h"
|
2018-03-17 12:32:40 +01:00
|
|
|
|
2015-04-07 07:57:34 +02:00
|
|
|
|
|
|
|
extern struct ac_status ac_global_status;
|
2018-03-17 12:32:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
int actube_global_init();
|
2015-04-07 07:57:34 +02:00
|
|
|
|
2016-02-17 16:15:49 +01:00
|
|
|
|
|
|
|
/* the protocol we understand */
|
|
|
|
|
|
|
|
enum {
|
|
|
|
AC_PROTO_CAPWAP=0,
|
|
|
|
AC_PROTO_LWAPP=1,
|
|
|
|
AC_PROTO_UNKNOWN
|
|
|
|
};
|
|
|
|
|
2022-08-13 09:47:12 +02:00
|
|
|
void start_shell();
|
2016-02-17 16:15:49 +01:00
|
|
|
|
|
|
|
|
2020-03-09 13:08:58 +01:00
|
|
|
#endif
|
|
|
|
|