We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddee8bb + 8592b6c commit 1667bd6Copy full SHA for 1667bd6
src/server/ocsigen_server.ml
@@ -992,6 +992,11 @@ let rec wait_connection use_ssl port socket =
992
(fun e ->
993
Ocsigen_messages.unexpected_exception e
994
"Server.wait_connection (handle connection)";
995
+ (match e with
996
+ | Ssl.Accept_error(Ssl.Error_ssl|Ssl.Error_syscall) ->
997
+ Ocsigen_messages.warning
998
+ ("Last SSL error: " ^ Ssl.get_error_string ())
999
+ | _ -> ());
1000
return ())
1001
>>= fun () ->
1002
Lwt_log.ign_info ~section "** CLOSE";
0 commit comments