Latest Additions

April 09, 2011
FTP Queue Server
Design Overview The goal was to develop a revision to the standard FTP server which allows people...
February 23, 2011
ExtJS Xtype List
xtype Class box Ext BoxComponent button Ext Button colorpalette Ext ColorPalette component Ext...

Site Search

Suggested Reading

Pages linked to here

Python Syslog Client

 import sys
 import socket
 
 def client(ip, port, message):
     sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
     sock.connect((ip, port))
     sock.send(message)
     sock.close()
 
 client('127.0.0.1', 514, sys.argv[1])

Call as:
 python syslogsend.py "Testing, 1, 2, 3"

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