Optimized Request and Response classes.

This commit is contained in:
2025-06-01 22:16:32 -07:00
parent 135f855309
commit 73f7ec1a8d
20 changed files with 877 additions and 231 deletions

View File

@@ -147,14 +147,6 @@ namespace ehs
}
}
void SSL::Bind(const Str_8& address, unsigned short port)
{
if (bound)
return;
TCP::Bind(address, port);
}
void SSL::Listen()
{
sslHdl = SSL_new(ctx);
@@ -200,7 +192,7 @@ namespace ehs
return client;
}
void SSL::Connect(const Str_8& address, const UInt_16 port)
void SSL::Connect(Str_8 address, const UInt_16 &port)
{
TCP::Connect(address, port);