git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16923
d0543943-73ff-0310-b7d9-
9358b9ac24b2
print Dumper $event;
}
+sub channel_hangup {
+ my $self = shift;
+ my $event = $self->{event_hash};
+ print "DO SQL GOODIES HERE!\n";
+}
+$0 = "ESL::Dispatch rocks!";
$daemon->set_worker(\&worker, 2000);
$daemon->set_callback("heartbeat", \&heartbeat);
-$daemon->set_callback("channel_hangup", \&heartbeat);
-
+$daemon->set_callback("channel_hangup", \&channel_hangup);
$daemon->run;