|
@@ -107,8 +107,8 @@ type
|
|
Procedure GetSockOptions;
|
|
Procedure GetSockOptions;
|
|
procedure SetConnectTimeout(AValue: Integer);
|
|
procedure SetConnectTimeout(AValue: Integer);
|
|
Procedure SetSocketOptions(Value : TSocketOptions);
|
|
Procedure SetSocketOptions(Value : TSocketOptions);
|
|
- function GetLocalAddress: TSockAddr;
|
|
|
|
- function GetRemoteAddress: TSockAddr;
|
|
|
|
|
|
+ function GetLocalAddress: sockets.TSockAddr;
|
|
|
|
+ function GetRemoteAddress: sockets.TSockAddr;
|
|
procedure SetIOTimeout(AValue: Integer);
|
|
procedure SetIOTimeout(AValue: Integer);
|
|
Protected
|
|
Protected
|
|
Procedure DoOnClose; virtual;
|
|
Procedure DoOnClose; virtual;
|
|
@@ -124,8 +124,8 @@ type
|
|
Function Write (Const Buffer; Count : Longint) :Longint; Override;
|
|
Function Write (Const Buffer; Count : Longint) :Longint; Override;
|
|
Property SocketOptions : TSocketOptions Read FSocketOptions
|
|
Property SocketOptions : TSocketOptions Read FSocketOptions
|
|
Write SetSocketOptions;
|
|
Write SetSocketOptions;
|
|
- property LocalAddress: TSockAddr read GetLocalAddress;
|
|
|
|
- property RemoteAddress: TSockAddr read GetRemoteAddress;
|
|
|
|
|
|
+ property LocalAddress: sockets.TSockAddr read GetLocalAddress;
|
|
|
|
+ property RemoteAddress: sockets.TSockAddr read GetRemoteAddress;
|
|
Property LastError : Integer Read GetLastError;
|
|
Property LastError : Integer Read GetLastError;
|
|
Property ReadFlags : Integer Read FReadFlags Write FReadFlags;
|
|
Property ReadFlags : Integer Read FReadFlags Write FReadFlags;
|
|
Property WriteFlags : Integer Read FWriteFlags Write FWriteFlags;
|
|
Property WriteFlags : Integer Read FWriteFlags Write FWriteFlags;
|