Documentation

Net::SecureSocket

Class

Represents a TCP socket with a TLS encryption layer.

Methods

bool Connecting()
Returns bool
bool CanRead()
Returns bool
bool CanWrite()
Returns bool
int Available()
Returns int
int8 ReadInt8()
Returns int8
int16 ReadInt16()
Returns int16
int ReadInt32()
Returns int
int64 ReadInt64()
Returns int64
uint8 ReadUint8()
Returns uint8
uint16 ReadUint16()
Returns uint16
uint ReadUint32()
Returns uint
uint64 ReadUint64()
Returns uint64
float ReadFloat()
Returns float
double ReadDouble()
Returns double
bool Write(int8 x)
Returns bool
bool Write(int16 x)
Returns bool
bool Write(int x)
Returns bool
bool Write(int64 x)
Returns bool
bool Write(uint8 x)
Returns bool
bool Write(uint16 x)
Returns bool
bool Write(uint x)
Returns bool
bool Write(uint64 x)
Returns bool
bool Write(float x)
Returns bool
bool Write(double x)
Returns bool