This commit is contained in:
azw 2023-04-17 02:34:21 +00:00
parent 0f16fe1513
commit 448879ecaa
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,12 @@
namespace a8
{
long long UdpPacket::GetRemoteKey()
{
return 0;
}
struct UdpListenerImpl
{
a8::UdpListener* master = nullptr;

View File

@ -12,6 +12,8 @@ namespace a8
char* buf = nullptr;
int buf_len = 0;
sockaddr_in remote_addr;
long long GetRemoteKey();
};
struct UdpListenerImpl;