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'm new to http2, gun and most things in this world, and I know that a netcat socket doing nothing is not exactly an HTTP/2 server, but I don't quite understand this error (the domain_lookup state thing in particular), and even more, how to catch it (since the connection is gone after it).
Thanks in advance for your help
The text was updated successfully, but these errors were encountered:
I'm not sure why you're in the domain_lookup state, but that error is otherwise expected: the server doesn't acknowledge the initial SETTINGS frame and as a result the connection is dropped. You are not going to be able to get a connection using simply netcat.
That said the error should probably be fixed, thanks for reporting!
Ciao,
I'm opening a listening socket with netcat
nc -l 127.0.0.2 8081
.Than I'm opening a gun connection like so:
and I see the
PRI * HTTP/2.0
section in netcat.Roughly half a second later I get this message:
I'm new to http2, gun and most things in this world, and I know that a netcat socket doing nothing is not exactly an HTTP/2 server, but I don't quite understand this error (the
domain_lookup
state thing in particular), and even more, how to catch it (since the connection is gone after it).Thanks in advance for your help
The text was updated successfully, but these errors were encountered: