libJabber --------- This is a small class which is designed to make it simple to incorporate various Jabber functionality into your application. Currently you may: * Login * Logout * Send a message * List online users The recieving of messages is tricky due to their asynchronous nature, so there is unreliable means of doing this. The library comes with a utility/test program which you might like to study. The most recent version of this code will be available from: http://www.steve.org.uk/Software/ Comments welcome. Sample Usage ------------ Sending A Message ----------------- A handy way to send a script from a shell script, or similar: ./jabblib --username=username --password=password --server=server.foo.com --send 'test message from steve' --to=username@server.foo.com Listing online users This is currently a little broken - the problem is that I'm not sending the "I'm online message" properly. ./jabblib --username=username --password=password --server=server.foo.com --list Steve --- www.steve.org.uk