On 10/05/14 10:53, Gerald Gutierrez wrote:
[---]
> pContent=<unavailable>, N=<unavailable>) + 50 at http_ssl.c:399
>    396   size_t got;
>    397   size_t total = 0;
>    398   while( N>0 ){
> -> 399     got = BIO_read(iBio, pContent, N);
>    400     if( got<=0 ) break;
>    401     total += got;
>    402     N -= got;
> 
> So, it's hanging in the BIO_read function.

   ...which is probably blocking and waiting for data.  Either it's
supposed to wait for data which the other side isn't sending (a problem
at the other side?), or it has gotten the idea that it needs more data
even though it doesn't (a local problem?).  I'd start by taking a look
at what the other side is doing.

   Is it possible for you to test without SSL?

-- 
Kind Regards,
Jan
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to