Represents a TCP socket with a TLS encryption layer.
Represents a TCP socket with a TLS encryption layer.
bool Connect(const string&in host, uint16 port)
bool bool Connecting()
bool bool CanRead()
bool bool CanWrite()
bool int Available()
int string ReadRaw(int bytes)
string bool ReadLine(string&out str)
bool bool WriteRaw(const string&in str)
bool int8 ReadInt8()
int8 int16 ReadInt16()
int16 int ReadInt32()
int int64 ReadInt64()
int64 uint8 ReadUint8()
uint8 uint16 ReadUint16()
uint16 uint ReadUint32()
uint uint64 ReadUint64()
uint64 float ReadFloat()
float double ReadDouble()
double bool Write(int8 x)
bool bool Write(int16 x)
bool bool Write(int x)
bool bool Write(int64 x)
bool bool Write(uint8 x)
bool bool Write(uint16 x)
bool bool Write(uint x)
bool bool Write(uint64 x)
bool bool Write(float x)
bool bool Write(double x)
bool bool Write(const string&in x)
bool bool Write(MemoryBuffer&in b, uint64 size = 0)
bool