[Redirector] Fix missing declaration

This commit is contained in:
Connection Refused
2021-09-29 15:56:43 +08:00
parent 3c84491e24
commit 619a85cc40
2 changed files with 5 additions and 2 deletions

View File

@@ -3,6 +3,8 @@
#define EVENTHANDLER_H
#include "Based.h"
#include "SocksHelper.h"
bool eh_init();
void eh_free();
@@ -23,4 +25,6 @@ void udpCanReceive(ENDPOINT_ID id);
void udpReceive(ENDPOINT_ID id, const unsigned char* target, const char* buffer, int length, PNF_UDP_OPTIONS options);
void udpClosed(ENDPOINT_ID id, PNF_UDP_CONN_INFO info);
void udpBeginReceive(ENDPOINT_ID id, SocksHelper::PUDP conn, PNF_UDP_OPTIONS data);
#endif