[Overview][Constants][Types][Procedures and functions][Index] |
Open a connection to a server socket (deprecated).
Source position: socketsh.inc line 181
function Connect( |
Sock: LongInt; |
const addr: TInetSockAddr; |
var SockIn: text; |
var SockOut: text |
):Boolean; |
Sock: LongInt; |
const addr: TInetSockAddr; |
var SockIn: file; |
var SockOut: file |
):Boolean; |
Sock: LongInt; |
const addr: string; |
var SockIn: text; |
var SockOut: text |
):Boolean; |
Sock: LongInt; |
const addr: string; |
var SockIn: file; |
var SockOut: file |
):Boolean; |
Connect opens a connection to a peer, whose address is described by Addr. AddrLen contains the length of the address. The type of Addr depends on the kind of connection you're trying to make, but is generally one of TSockAddr or TUnixSockAddr.
The forms of the Connect command with the Text or File arguments are equivalent to subsequently calling the regular Connect function and the Sock2Text or Sock2File functions. These functions return True if successfull, False otherwise.
The Connect function returns a file descriptor if the call was successfull, -1 in case of error.
On error, -1 is returned and errors are reported in SocketError.
|
Listen for connections on a socket. |
|
|
Bind a socket to an address. |
|
|
Accept a connection from a socket (deprecated). |
|
|
Accept a connection from a socket. |
Program Client; { Program to test Sockets unit by Michael van Canneyt and Peter Vreman Client Version, First Run sock_svr to let it create a socket and then sock_cli to connect to that socket } uses Sockets; procedure PError(const S : string); begin writeln(S,SocketError); halt(100); end; Var SAddr : TInetSockAddr; Buffer : string [255]; S : Longint; Sin,Sout : Text; i : integer; begin S:=fpSocket (AF_INET,SOCK_STREAM,0); if s=-1 then Perror('Client : Socket : '); SAddr.sin_family:=AF_INET; { port 50000 in network order } SAddr.sin_port:=htons(5000); { localhost : 127.0.0.1 in network order } SAddr.sin_addr.s_addr:=HostToNet((127 shl 24) or 1); if not Connect (S,SAddr,Sin,Sout) then PError('Client : Connect : '); Reset(Sin); ReWrite(Sout); Buffer:='This is a textstring sent by the Client.'; for i:=1 to 10 do Writeln(Sout,Buffer); Flush(Sout); Readln(SIn,Buffer); WriteLn(Buffer); Close(sout); end.
program pfinger; uses sockets,errors; Var Addr : TInetSockAddr; S : Longint; Sin,Sout : Text; Line : string; begin Addr.sin_family:=AF_INET; { port 79 in network order } Addr.sin_port:=79 shl 8; { localhost : 127.0.0.1 in network order } Addr.sin_addr.s_addr:=((1 shl 24) or 127); S:=fpSocket(AF_INET,SOCK_STREAM,0); If Not Connect (S,ADDR,SIN,SOUT) Then begin Writeln ('Couldn''t connect to localhost'); Writeln ('Socket error : ',strerror(SocketError)); halt(1); end; rewrite (sout); reset(sin); writeln (sout,paramstr(1)); flush(sout); while not eof(sin) do begin readln (Sin,line); writeln (line); end; fpShutdown(s,2); close (sin); close (sout); end.