Skip to content

Commit

Permalink
* Prevent codetools from messing up types again
Browse files Browse the repository at this point in the history
  • Loading branch information
mvancanneyt committed Sep 20, 2022
1 parent 2cbc6bb commit 9c7d151
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/fcl-net/src/ssockets.pp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ TSocketStream = class(THandleStream)
Procedure GetSockOptions;
procedure SetConnectTimeout(AValue: Integer);
Procedure SetSocketOptions(Value : TSocketOptions);
function GetLocalAddress: TSockAddr;
function GetRemoteAddress: TSockAddr;
function GetLocalAddress: sockets.TSockAddr;
function GetRemoteAddress: sockets.TSockAddr;
procedure SetIOTimeout(AValue: Integer);
Protected
Procedure DoOnClose; virtual;
Expand All @@ -124,8 +124,8 @@ TSocketStream = class(THandleStream)
Function Write (Const Buffer; Count : Longint) :Longint; Override;
Property SocketOptions : TSocketOptions Read FSocketOptions
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 ReadFlags : Integer Read FReadFlags Write FReadFlags;
Property WriteFlags : Integer Read FWriteFlags Write FWriteFlags;
Expand Down

0 comments on commit 9c7d151

Please sign in to comment.