2018-03-17 12:32:40 +01:00
|
|
|
#ifndef __ACTUBE_AC_H
|
|
|
|
#define __ACTUBE_AC_H
|
|
|
|
|
2022-08-23 02:35:54 +02:00
|
|
|
#include "cw/cfg.h"
|
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-24 00:29:26 +02:00
|
|
|
int start_rpc(cw_Cfg_t *global_cfg);
|
2022-08-23 19:55:36 +02:00
|
|
|
int test_shell();
|
2016-02-17 16:15:49 +01:00
|
|
|
|
|
|
|
|
2020-03-09 13:08:58 +01:00
|
|
|
#endif
|
|
|
|
|