You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Debian 11 (testing) with gnutls installed by apt install gnutls-dev. Note that previously I use Debian 10 (stable), I upgrade to Debian testing only because I would like to try newer version of gnutls.
My Onion instance will get stuck after running for a few days (i.e., it does not respond to any incoming connections). I investigated it for a while and it turns out to be the issue of gnutls_handshake():
I am also aware that gnutls's doc on gnutls-handshake() does say that "[o]n these non-fatal errors call this function again, until it returns 0" so I am not sure if this is something Onion can fix.
I am now trying the following, see if it can "solve" the issue (could take weeks to get result):
I am using Debian 11 (testing) with gnutls installed by
apt install gnutls-dev
. Note that previously I use Debian 10 (stable), I upgrade to Debian testing only because I would like to try newer version ofgnutls
.My Onion instance will get stuck after running for a few days (i.e., it does not respond to any incoming connections). I investigated it for a while and it turns out to be the issue of
gnutls_handshake()
:onion/src/onion/https.c
Lines 222 to 225 in de8ea93
I revised the above section to:
and build onion with
cmake -DCMAKE_BUILD_TYPE=Debug ../
. The below is what I get from log after my instance gets stuck:I am also aware that gnutls's doc on gnutls-handshake() does say that "[o]n these non-fatal errors call this function again, until it returns 0" so I am not sure if this is something Onion can fix.
I am now trying the following, see if it can "solve" the issue (could take weeks to get result):
Any idea on this?
The text was updated successfully, but these errors were encountered: