<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body style="font-family: Helvetica,Arial,sans-serif; font-size:
    13px;" bgcolor="#FFFFFF" text="#000000">
    <div style="font-family:Helvetica,Arial,sans-serif;font-size:13px;">
      <div class="moz-cite-prefix">Hi,<br>
        <br>
        We've come across a problem where URIs that are in the IP state
        (inactive - pinging) aren't being set to the 'active' state
        after a successful ping probe. We've sifted through the code and
        found that modules_k/dispatcher/dispatch.c has this code in the
        ds_option_callback() function, on line 2328:<br>
        &nbsp;&nbsp;&nbsp; if (*ps-&gt;param == NULL)<br>
        &nbsp;&nbsp;&nbsp; {<br>
        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; LM_DBG("No parameter provided, OPTIONS-Request was
        finished"<br>
        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; " with code %d\n", ps-&gt;code);<br>
        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return;<br>
        &nbsp;&nbsp;&nbsp; }<br>
        <br>
        When the group (ie *ps-&gt;param) is 0 then that statement
        evaluates to true and the function returns without executing the
        callback. For groups &gt; 0 the code works fine.<br>
        <br>
        To fix this we've changed the statement to:<br>
        &nbsp;&nbsp;&nbsp; if (ps-&gt;param == NULL)<br>
        <br>
        If you have any questions, comments or feed back please let me
        know. If that change gets accepted please let me know as well so
        that we can remove the patch from our build systems.<br>
        <br>
        Thanks for the great software!<br>
        <div class="moz-signature">
          <p style="margin-bottom: 0in;">
            <font color="#000000" face="verdana, sans-serif"><b>Avi
                Brender</b></font><br>
            <font style="font-size: 9pt;" color="#4c4c4c" face="Arial,
              Helvetica, Geneva, Sans-Serif" size="2"><b>Elite Hosts</b></font><br>
          </p>
        </div>
      </div>
      <br>
    </div>
  </body>
</html>