NetCom7
NetCom7 copied to clipboard
The fastest communications possible. Delphi rulez.
Hi, I'm having a lot of issues with the Indy server components that come with Delphi 10.4 so I want to try your NetCom7 component. What's the correct installation of...
Here goes. I love the simplicity of these components. However, there is one problem I have noticed. I built a Windows test app using your TncTCPServer/TncTCPClient (NcSC810 zip file) and...
Create ClientServerTest project - a combined client and server test program for manually testing NetCom7 NOTE: Currently message corruption occurs when performing sends in quick succession of each other, i.e.,...
Commit 50205fcf0e691853027db437d6d04fa65b504497 introduces a simple manual client/server test program. # Issue The test program fails when executing client sends in rapid succession, i.e., when hitting "Send from clients" multiple times...
Was trying to install to evaluate (Delphi 11) and I get this error : [dcc64 Fatal Error] NetComRegister.pas(16): F2613 Unit 'ToolsAPI' not found. any ehlp would be appreciated. Need a...
/////////////////////////////////////////////// //commands: /////////////////////////////////////////////// const cmdUserLogin = 0; cmdFileName = 1; cmdFileSize = 2; cmdFileStream = 3; /////////////////////////////////////////////// //**on client side:** /////////////////////////////////////////////// procedure TForm1.Button1Click(Sender: TObject); var BS: TBytesStream; begin Client.ExecCommand(cmdFileName, BytesOf('client.png'));//send...
The TncSourceBase class provides a TCP server that uses the TncTCPBase as the underlying socket. Then, when data is received, it processes the received stream into "commands" that are then...
Thanks.
Good Job. Thank you. I have Modified two point on Delphi 12 Athens ... 1. Need TypeCast ... function TncLine.GetReceiveTimeout: Integer; var Opt: DWord; OptSize: Integer; begin OptSize := SizeOf(Opt);...
On android and linux with fmx have this error on 4 part function TncLine.GetReceiveTimeout: Integer; var Opt: DWord; OptSize: Integer; begin OptSize := SizeOf(Opt); {$IFDEF MSWINDOWS} Check(GetSockOpt(FHandle, SOL_SOCKET, SO_RCVTIMEO, PAnsiChar(@Opt),...