Latest Additions

September 08, 2010
Put Your URL Everywhere
You should be advertising your Web site everywhere Wherever you put your telephone number put your...
September 08, 2010
Two Common Web Design Myths
If your site has been around for a while you d probably have been visited by the Web Design Police...

Site Search

Suggested Reading

Pages linked to here

DXSock Syslog Client

 uses
    dxsock6;
 
 var
    client:TBPDXSock;
 
 begin
    {$IFDEF FPC}
    client.init;
    {$ELSE}
    client:=TBPDXSock.Create;
    {$ENDIF}
    client.isUDPMode:=True;
    if client.connectto('127.0.0.1',514) then
       client.write(paramstr(1));
    {$IFDEF FPC}
    client.done;
    {$ELSE}
    client.Free;
    {$ENDIF}
 end.

call as:
 syslogsend "Testing 1, 2, 3"

See also Python Syslog Client
This topic was last modified on 04-05-2010 and has had 44 hits. These are popular related words: