mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
14 lines
311 B
C++
14 lines
311 B
C++
#pragma once
|
|
|
|
#include <brynet/net/SSLHelper.hpp>
|
|
#include <brynet/net/TcpConnection.hpp>
|
|
|
|
class ConnectionOption final {
|
|
public:
|
|
std::vector<TcpConnection::EnterCallback> enterCallback;
|
|
SSLHelper::Ptr sslHelper;
|
|
bool useSSL = false;
|
|
bool forceSameThreadLoop = false;
|
|
size_t maxRecvBufferSize = 128;
|
|
};
|