|
|
|
| acSimpleTCPServer component.
|
| function Broadcast(Buffer: PChar; BufLength: Integer): Integer;
|
| The Broadcast
|
|
|
| This is the same as
|
| var
|
| I: Integer;
|
| TheString: String;
|
| tmpClient: TacSimpleTCPClient;
|
| begin
|
| TheString := 'test';
|
| I := acSimpleTCPServer1.Connections.Count;
|
| if I <> 0 then
|
| for I := 0 to I - 1 do
|
| begin
|
| tmpClient := Server.Connections[I];
|
| Server.Send(tmpClient, PChar(TheString), Length(TheString));
|
| end;
|
| end;
|
| Send, SendStream and BroadcastStream methods.
|