mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 22:00:11 +00:00
15 lines
228 B
C
15 lines
228 B
C
|
#ifndef CONNECT_H
|
||
|
#define CONNECT_H
|
||
|
|
||
|
#include <google/protobuf-c/protobuf-c.h>
|
||
|
|
||
|
#define MAX_BUF_SIZE 4096
|
||
|
|
||
|
int NebulaConnect();
|
||
|
|
||
|
int NebulaSend(uint8_t type, ProtobufCMessage *msg);
|
||
|
|
||
|
void NebulaDisconnect();
|
||
|
|
||
|
#endif //CONNECT_H
|