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
{{ message }}
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
I get this error:
Caused by config option:
socksAuthCredentials = "x*******:H*********N"
I double checked whether its correctly formatted, but it is
I had to use a git master build as I desperately need that feature (->socks5 parent auth)
EDIT: I checked again, and apparently in preinitSocks()
the code goes into:
else if (rc == 0) {
// separator ':' not found
and rc is == 0 because in atomSplit() the code goes into
p = memchr(atom->string, c, atom->length);
if(p == NULL) <-- here
so memchr fails/is NULL @ that point causing the whole issue
The text was updated successfully, but these errors were encountered: