We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First, how it should work with a 'plain' sample:
Server:
cd examples/plain node app.js
Client:
spdycat -nv -3 https://127.0.0.1:3232
[ 0.007] NPN select next protocol: the remote server offers: * spdy/3 * spdy/2 * http/1.1 * http/1.0 NPN selected the protocol: spdy/3 [ 0.016] Handshake complete [ 0.017] send SYN_STREAM frame <version=3, flags=1, length=217> (stream_id=1, assoc_stream_id=0, pri=3) :host: 127.0.0.1:3232 :method: GET :path: / :scheme: https :version: HTTP/1.1 accept: */* accept-encoding: gzip, deflate user-agent: spdylay/1.0.0 [ 0.024] recv SETTINGS frame <version=3, flags=0, length=20> (niv=2) [4(1):100] [7(1):1048576] [ 0.063] recv SYN_REPLY frame <version=3, flags=0, length=36> (stream_id=1) :status: 200 OK :version: HTTP/1.1 content-type: text/plain [ 0.063] recv DATA frame (stream_id=1, flags=0, length=13) [ 0.063] recv DATA frame (stream_id=1, flags=1, length=0) [ 0.063] send GOAWAY frame <version=3, flags=0, length=8> (last_good_stream_id=0)
Now, we change to clear mode:
var options = { plain: true, ssl: false, ...
and run it:
node app.js
spdycat -nv -3 --no-tls https://127.0.0.1:3232
Then we have:
[ 0.000] Handshake complete [ 0.001] send SYN_STREAM frame <version=3, flags=1, length=217> (stream_id=1, assoc_stream_id=0, pri=3) :host: 127.0.0.1:3232 :method: GET :path: / :scheme: https :version: HTTP/1.1 accept: */* accept-encoding: gzip, deflate user-agent: spdylay/1.0.0 [ 0.027] recv SETTINGS frame <version=3, flags=0, length=20> (niv=2) [4(1):100] [7(1):1048576] [ 0.067] recv RST_STREAM frame <version=3, flags=0, length=8> (stream_id=1, status_code=3) [ 0.068] send GOAWAY frame <version=3, flags=0, length=8> (last_good_stream_id=0)
Thoughts?
The text was updated successfully, but these errors were encountered:
@indutny , thanks. the 1.9.0 works.
Sorry, something went wrong.
you're welcome, sorry forgot to write about it here :)
No branches or pull requests
First, how it should work with a 'plain' sample:
Server:
cd examples/plain node app.js
Client:
Now, we change to clear mode:
and run it:
Server:
Client:
Then we have:
Thoughts?
The text was updated successfully, but these errors were encountered: