in reply to Re: Re: CGI Net::AIM get_info()
in thread CGI Net::AIM get_info()
Note that the return value of socket send is the number of characters sent. That explains why you are getting a numeric value in the return value of get_info. You have found a bug in the Net::AIM::Connection module it seems. ;-)sub send_to_AOL { ... my $rv = send($self->{_socket}, $data, 0); ... return $rv; }
$aim->get_info("screenname"); $response = $aim->do_one_loop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: CGI Net::AIM get_info()
by rgens (Initiate) on Jan 16, 2004 at 07:15 UTC | |
by Roger (Parson) on Jan 16, 2004 at 14:22 UTC |