mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-25 02:46:08 +02:00
46 lines
1.0 KiB
ObjectPascal
46 lines
1.0 KiB
ObjectPascal
Program Client;
|
|
{
|
|
$Id$
|
|
This file is part of the Free Component Library (FCL)
|
|
Copyright (c) 1999-2000 by the Free Pascal development team
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
{
|
|
TUnixSocket client program. Before running this, run either
|
|
'socksvr', or 'dsocksvr' in another terminal
|
|
or in the background.
|
|
}
|
|
|
|
uses ssockets;
|
|
|
|
var
|
|
S : String;
|
|
i : longint;
|
|
|
|
begin
|
|
S:='This is a textstring sent by the client'#10;
|
|
With TUnixSocket.Create('ServerSoc') do
|
|
begin
|
|
For I:=1 to 10 do
|
|
Write(S[1],Length(S));
|
|
S:='QUIT'#10;
|
|
Write(S[1],Length(S));
|
|
Free;
|
|
end;
|
|
end.
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.2 2000-07-13 11:33:04 michael
|
|
+ removed logs
|
|
|
|
}
|