-
Notifications
You must be signed in to change notification settings - Fork 131
Items MSN
ggodart edited this page Jan 5, 2021
·
1 revision
See original
Example usage:
$client->connect('username','password', '', {
Status => \&Status,
Answer => \&Answer,
Message => \&Message,
Join => \&Join} , 0 );
while (1) {
print '.';
select undef, undef, undef, .1;
$client->process(0);
}
Downloaded from: http://www.wiredbots.com/tutorial.html Broken link http://adamswann.com/library/2002/msn-perl/ Broken link
Protocol info: http://www.hypothetic.org/docs/msn/
Related project that uses MSN.pm with different mods here: http://webmessenger.sourceforge.net Broken link
Changes:
04/27/2002 : Bruce Winter ([email protected]) Split &process out of &connect, so we can make it non-blocking.
None