> 
> "Bad file number"
> 
> thanks peter
> 

Could you try something more basic? Something like

Program test.

uses
   Classes, sysutils, blcksock;

var sock:tblocksocket;

begin
sock:=tblocksocket.create;
sock.RaiseExcept:=true;
sock.Family := SF_IP4;
sock.CreateSocket;
sock.Bind('0.0.0.0','0');
sock.Connect('77.220.96.52','80');
writeln('Connected!');
sock.CloseSocket;
sock.Free;
End;





------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
synalist-public mailing list
synalist-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to