Commit cc960a32 by ziyue

支持多线程

parent d0a1c72f
......@@ -227,7 +227,8 @@ namespace RTC
bool handshakeDone{ false };
bool handshakeDoneNow{ false };
std::string remoteCert;
static constexpr int SslReadBufferSize{ 65536 };
//最大不超过mtu
static constexpr int SslReadBufferSize{ 1600 };
uint8_t sslReadBuffer[SslReadBufferSize];
};
} // namespace RTC
......
......@@ -7,10 +7,6 @@
namespace RTC
{
/* Static. */
static constexpr size_t StunSerializeBufferSize{ 65536 };
static uint8_t StunSerializeBuffer[StunSerializeBufferSize];
/* Instance methods. */
IceServer::IceServer(Listener* listener, const std::string& usernameFragment, const std::string& password)
......
......@@ -106,6 +106,9 @@ namespace RTC
IceState state{ IceState::NEW };
std::list<RTC::TransportTuple> tuples;
RTC::TransportTuple* selectedTuple{ nullptr };
//最大不超过mtu
static constexpr size_t StunSerializeBufferSize{ 1600 };
uint8_t StunSerializeBuffer[StunSerializeBufferSize];
};
} // namespace RTC
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论