<div dir="ltr">I have made a fresh release containing the patch.  Please report if you have further issues.<div><br></div><div>-Hans</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014/1/18 Stas Boukarev <span dir="ltr"><<a href="mailto:stassats@gmail.com" target="_blank">stassats@gmail.com</a>></span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">José Ronquillo <<a href="mailto:josrr@ymail.com">josrr@ymail.com</a>> writes:<br>
<br>
> Hello Hans,  my setup is<br>
><br>
><br>
><br>
> common lisp implementation: SBCL 1.1.14<br>
> Linux 3.10.5 i686 and Linux 3.10 amd64<br>
><br>
> Hunchentoot version 1.2.24<br>
><br>
><br>
> This code can help you to reproduce the problem:<br>
><br>
><br>
><br>
> (ql:quickload "hunchentoot")<br>
><br>
> (defvar *acceptor* nil "El acceptor de hunchentoot")<br>
><br>
> (defun inicia-ht (&optional (port 4242))<br>
>   (format t "Iniciando el servidor en el puerto ~5,'0d~%" port)<br>
>   (setf *acceptor* (make-instance 'hunchentoot:easy-ssl-acceptor<br>
>   :port port<br>
>   :ssl-certificate-file "./server.crt"<br>
>   :ssl-privatekey-file "./server.key"))<br>
> ;  (setf *acceptor* (make-instance 'hunchentoot:easy-acceptor<br>
> ;  :port port)<br>
>   (setf (hunchentoot:acceptor-document-root *acceptor*) (pathname "/var/www/"))<br>
>   (hunchentoot:start *acceptor*))<br>
><br>
> (inicia-ht)<br>
><br>
><br>
><br>
> You can test with ab with and without ssl<br>
><br>
</div>That was caused by the SSL stream not being closed. Should be fixed in<br>
git, thanks for the report!<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
With best regards, Stas.<br>
<br>
</font></span></blockquote></div><br></div>