[Freeswitch-users] Event did not return anything after update.
DJB International
djbinter at gmail.com
Sun Jun 6 17:15:56 PDT 2010
After updating from 170404a to 9f73ddd, I could not see anything in event
message like before.
I connect to mod_event_socket by perl script below:
require ESL;
my $con = new ESL::ESLconnection("localhost", "8021", "ClueCon");
$con->events("plain", "all");
while($con->connected()) {
#my $e = $con->recvEventTimed(100);
my $e = $con->recvEvent();
if ($e) {
#print $e->serialize();
my $h = $e->firstHeader();
print "\n--------------------RECEIVED--------------------\n";
while ($h) {
printf "Header: [%s] = [%s]\n", $h, $e->getHeader($h);
$h = $e->nextHeader();
}
}
}
I wonder whether there is any changes that I need to adjust after the
update.
Thank you,
Dorn B.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20100606/18516c39/attachment.html
More information about the FreeSWITCH-users
mailing list