<div>After updating from 170404a to 9f73ddd, I could not see anything in event message like before.</div><div><br></div><div>I connect to mod_event_socket by perl script below:</div><div><br></div><div>require ESL;</div><div>
<br></div><div>my $con = new ESL::ESLconnection("localhost", "8021", "ClueCon");</div><div><br></div><div>$con->events("plain", "all");</div><div><br></div><div>while($con->connected()) {</div>
<div> #my $e = $con->recvEventTimed(100);</div><div> my $e = $con->recvEvent();</div><div><br></div><div> if ($e) {</div><div> #print $e->serialize();</div><div> my $h = $e->firstHeader();</div><div> print "\n--------------------RECEIVED--------------------\n";</div>
<div> while ($h) {</div><div> printf "Header: [%s] = [%s]\n", $h, $e->getHeader($h);</div><div> $h = $e->nextHeader();</div><div> }</div><div><br></div><div> }</div><div><br></div><div>}</div>
<div><br></div><div>I wonder whether there is any changes that I need to adjust after the update.</div><div><br></div><div>Thank you,</div><div>Dorn B.</div>