Hallo,
im Prinzip sollte es so gehen.
Delphi-Quellcode:
procedure TConfigService.onExecute(AContext: TIdContext);
begin
AContext.Connection.IOHandler.ReadBytes(key,16);
// TCP server liest
AContext.Connection.IOHandler.
Write(buffer.Size);
// TCP server schickt etwas zum client
AContext.Connection.IOHandler.
Write(buffer,buffer.size);
// wie oben
end;
Grüße
Klaus