Hi all,<br><br>I&#39;ve done a sample program (In perl ESL) , which play a file to the caller and then it will call recvEvent() and print the event name. I&#39;ve handled signals also.<br><br>When I send SIGINT to my program (Perl), the signal handler is called and I can see the print output. But in the same time,  I received SERVER_DISCONNECTED from freeswitch as event.<br>
<br>I don&#39;t know why I received SERVER_DISCONNECTED from freeswitch. Is it because, the recvEvent() from perl internally  calls the recvevent function in the Esl.c and when it waits to receive the information from socket, the signal occurred???<br>
<br>Please clarify me!! <br><br>Here is my program<br>require ESL;<br>use IO::Socket::INET;<br>use Data::Dumper;<br><br>my $ip = &quot;192.168.1.222&quot;;<br>my $sock = new IO::Socket::INET ( LocalHost =&gt; $ip,  LocalPort =&gt; &#39;8447&#39;,  Proto =&gt; &#39;tcp&#39;,  Listen =&gt; 1,  Reuse =&gt; 1 );<br>
die &quot;Could not create socket: $!\n&quot; unless $sock;<br>&amp;register_Signals();<br><br>for(;;) {<br>    my $new_sock = $sock-&gt;accept();<br>    next if (not defined ($new_sock));<br>    my $pid = fork();<br>    if ($pid) {<br>
        close($new_sock);<br>        next;<br>    }<br>    print &quot;CHILD PID: $$\n&quot;;<br>    my $host = $new_sock-&gt;sockhost();<br>    my $fd = fileno($new_sock);<br><br>    my $con = new ESL::ESLconnection($fd);<br>
    my $info = $con-&gt;getInfo();<br><br>    my $uuid = $info-&gt;getHeader(&quot;unique-id&quot;);<br><br>    printf &quot;Connected call %s, from %s\n&quot;, $uuid, $info-&gt;getHeader(&quot;caller-caller-id-number&quot;);<br>
    my $r=$con-&gt;execute(&quot;answer&quot;);<br>    print Dumper $r;<br>    $con-&gt;events(&quot;plain&quot;,&quot;all&quot;);<br>    my  $re=$con-&gt;execute(&quot;playback&quot;,&quot;/usr/local/freeswitch1/sounds/en/us/callie/ivr/8000/ivr-welcome_to_freeswitch.wav&quot;);<br>
<br>    while($con-&gt;connected()) {<br>        my $e = $con-&gt;recvEvent();<br><br>        if ($e) {<br>            my $name = $e-&gt;getHeader(&quot;event-name&quot;);<br>            print &quot;EVENT [$name]\n&quot;;<br>
            if ($name eq &quot;DTMF&quot;) {<br>                my $digit = $e-&gt;getHeader(&quot;dtmf-digit&quot;);<br>                print &quot;$digit\n&quot;;<br>            }<br>        }<br>    }<br>    close($new_sock);<br>
}<br>sub register_Signals() {<br>    foreach ( keys %SIG ) {<br>        $SIG{$_} = &#39;sig_Handler&#39;;<br>    }<br>}<br><br>sub sig_Handler() {<br>    my $handle=$_[0];<br>    if($handle eq &quot;INT&quot;) {<br>        print &quot;$$: SIGNAL SIG$handle is generated\n&quot;;<br>
    }<br>}<br><br>