This commit is contained in:
aozhiwei 2020-09-27 11:16:21 +08:00
parent a1c591dd5f
commit 579efb2289
2 changed files with 11 additions and 0 deletions

View File

@ -341,5 +341,12 @@ namespace f8
free(buff);
return sizeof(WSProxyPackHead_S) + packlen;
}
int Net_SendProxyMsg(a8::TcpListener* tcp_tlistener, int socket_handle,
unsigned int seqid, unsigned short error_code,
unsigned short msgid, const std::string& data)
{
}
}

View File

@ -136,4 +136,8 @@ namespace f8
int Net_SendProxyMsg(a8::TcpListener* tcp_tlistener, int socket_handle,
unsigned int seqid, unsigned short error_code,
unsigned short msgid, ::google::protobuf::Message& msg);
int Net_SendProxyMsg(a8::TcpListener* tcp_tlistener, int socket_handle,
unsigned int seqid, unsigned short error_code,
unsigned short msgid, const std::string& data);
}