This commit is contained in:
aozhiwei 2023-04-24 10:33:07 +08:00
parent 8a6b80fa4e
commit b5c367d954
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
#include "precompile.h"
#include "downstream.h"
void DownStream::ForwardUpStreamMsg(f8::MsgHdr& hdr)
{
}

View File

@ -7,4 +7,5 @@ class DownStream
int socket_handle = a8::INVALID_SOCKET_HANDLE;
std::weak_ptr<UpStream> conn;
void ForwardUpStreamMsg(f8::MsgHdr& hdr);
};