HR_ResolvingBegin: Resolving is begin. Resolved IP and port is in parameter in format like: 'localhost.somewhere.com:25'.
HR_ResolvingEnd: Resolving is done. Resolved IP and port is in parameter in format like: 'localhost.somewhere.com:25'. It is always same as in HR_ResolvingBegin!
HR_SocketCreate: Socket created by CreateSocket method. It reporting Family of created socket too!
HR_SocketClose: Socket closed by CloseSocket method.
HR_Bind: Socket binded to IP and Port. Binded IP and Port is in parameter in format like: 'localhost.somewhere.com:25'.
HR_Connect: Socket connected to IP and Port. Connected IP and Port is in parameter in format like: 'localhost.somewhere.com:25'.
HR_CanRead: Called when CanRead method is used with True result.
HR_CanWrite: Called when CanWrite method is used with True result.
HR_Listen: Socket is swithed to Listen mode. (TCP socket only)
HR_ReadCount: report count of bytes readed from socket. Number is in parameter string. If you need is in integer, you must use StrToInt function!
HR_WriteCount: report count of bytes writed to socket. Number is in parameter string. If you need is in integer, you must use StrToInt function!
HR_Wait: If is limiting of bandwidth on, then this reason is called when sending or receiving is stopped for satisfy bandwidth limit. Parameter is count of waiting milliseconds.
HR_Error: report situation where communication error occured. When raiseexcept is True, then exception is called after this Hook reason.
Procedural type for OnStatus event. Sender is calling TBlockSocket object, Reason is one of set Status events and value is optional data.
THookDataFilter = procedure(Sender: TObject; var Value: AnsiString) of object;
This procedural type is used for DataFilter hooks.
THookCreateSocket = procedure(Sender: TObject) of object;
This procedural type is used for hook OnCreateSocket. By this hook you can insert your code after initialisation of socket. (you can set special socket options, etc.)
This procedural type is used for monitoring of communication.
THookAfterConnect = procedure(Sender: TObject) of object;
This procedural type is used for hook OnAfterConnect. By this hook you can insert your code after TCP socket has been sucessfully connected.
THookVerifyCert = function(Sender: TObject):boolean of object;
This procedural type is used for hook OnVerifyCert. By this hook you can insert your additional certificate verification code. Usefull to verify server CN against URL.
THookHeartbeat = procedure(Sender: TObject) of object;
This procedural type is used for hook OnHeartbeat. By this hook you can call your code repeately during long socket operations. You must enable heartbeats by HeartbeatRate property!
TSocketFamily = (...);
Specify family of socket.
SF_Any: Default mode. Socket family is defined by target address for connection. It allows instant access to IPv4 and IPv6 nodes. When you need IPv6 address as destination, then is used IPv6 mode. othervise is used IPv4 mode. However this mode not working properly with preliminary IPv6 supports!
SF_IP4: Turn this class to pure IPv4 mode. This mode is totally compatible with previous Synapse releases.
SF_IP6: Turn to only IPv6 mode.
TSocksType = (...);
specify possible values of SOCKS modes.
ST_Socks5:
ST_Socks4:
TSSLType = (...);
Specify requested SSL/TLS version for secure connection.