<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(&quot;localhost&quot;, &quot;8021&quot;, &quot;ClueCon&quot;);</div><div><br></div><div>$con-&gt;events(&quot;plain&quot;, &quot;all&quot;);</div><div><br></div><div>while($con-&gt;connected()) {</div>
<div>  #my $e = $con-&gt;recvEventTimed(100);</div><div>  my $e = $con-&gt;recvEvent();</div><div><br></div><div>  if ($e) {</div><div>    #print $e-&gt;serialize();</div><div>    my $h = $e-&gt;firstHeader();</div><div>      print &quot;\n--------------------RECEIVED--------------------\n&quot;;</div>
<div>    while ($h) {</div><div>      printf &quot;Header: [%s] = [%s]\n&quot;, $h, $e-&gt;getHeader($h);</div><div>      $h = $e-&gt;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>