Skip to content
Snippets Groups Projects
  1. Sep 19, 2019
  2. Sep 17, 2019
  3. Sep 10, 2019
  4. Sep 09, 2019
  5. Sep 06, 2019
  6. Sep 04, 2019
  7. Sep 03, 2019
    • rswindell's avatar
      Alterego reported a scenario where the web server's cleanup() would wait · 6172b4b7
      rswindell authored
      forever for 1 child thread (presumably the http_logging_thread) to terminate:
      
       >   8/27  02:39:43p  Waiting for HTTP logging thread to terminate...
       >   8/27  02:39:43p  HTTP logging thread started
       >   8/27  02:39:43p  HTTP logging thread received NULL linked list log entry
       >   8/27  02:40:44p  !TIMEOUT waiting for HTTP logging thread to terminate
       >   8/27  02:40:44p  Done waiting for HTTP logging thread to terminate
       >   8/27  02:40:44p  0000 Waiting for 1 child threads to terminate
      
       <infinite wait loop here>
      
      - Add an extra terminate_http_logging_thread check to the top of the loop in
        http_logging_thread().
      - Signal the log_list semaphore in the "Waiting for HTTP logging thread" and
        "Waiting for x child threads" loops.
      6172b4b7
  8. Sep 02, 2019
  9. Sep 01, 2019
    • rswindell's avatar
      Received-telnet command improvements: · 2b1bccc2
      rswindell authored
      - If a telnet command was received in multiple packets, the memcpy optimization
        in telnet_interpret() would skip/drop all bytes in the subsequent pkt payload
        before an IAC char. Don't optimize when in the middle of a telnet command.
      - If a received telnet command exceeds the telnet_cmd buffer, reset the
        received telnet_cmdlen and log a warning-level message
      - If a telnet sub-negotiation END command is received as the beginning of a
        new telnet command, log a warning-level message and reset the telnet_cmdlen.
      
      This fixes the occasional problem observed when using fTelnet and its sending
      the "SEND-LOCATION" sub-neg command split between 2 TCP packets. Only
      part of the first packet would be used as the location data and the rest
      processed as input from the users (e.g. as the Login: prompt). Thanks, Ree!
      2b1bccc2
    • rswindell's avatar
  10. Aug 31, 2019
Loading