mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-24 06:10:11 +00:00
13 lines
182 B
C
13 lines
182 B
C
|
#ifndef AUTH_H
|
||
|
#define AUTH_H
|
||
|
|
||
|
#include "nebula_proto.h"
|
||
|
|
||
|
// auth 分为2步.
|
||
|
|
||
|
int NebulaAuth1();
|
||
|
|
||
|
void NebulaOnAuth(NebulaHeader *head, const char* data, int len);
|
||
|
|
||
|
#endif //AUTH_H
|