actube/src/ac/ac.h

27 lines
322 B
C
Raw Normal View History

#ifndef __ACTUBE_AC_H
#define __ACTUBE_AC_H
2022-08-23 02:35:54 +02:00
#include "cw/cfg.h"
extern struct ac_status ac_global_status;
int actube_global_init();
/* 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();
2022-09-12 00:28:58 +02:00
void hapd_run();
#endif