-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segmentation fault in server_queuereader (d=0x5555557b29f0) at server.c:875 #368
Comments
There is also a segfault when the relay is listening with
Segfault happens inside the ssl library.
|
nice catch! |
grobian
added a commit
that referenced
this issue
Jul 11, 2019
Add a dual-mode test setup where two relays talk to each other to verify traffic flowing through. The first test is SSL-based, but this needs extending such that all modes are tested. Question is if we can, since Travis won't have SSL enabled everywhere. Issue: #368
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The notable part of the config is the
ssl
bit.I think in fixing #351, there's a couple logic bug still present.
The config syntax
transport ssl
is no longer valid, ssl is always extending another protocol, in this case,self->transport == (W_PLAIN | W_SSL)
, so the second condition is always false, but we need it to be true forplain ssl
.The text was updated successfully, but these errors were encountered: