tatsuhiro-t / spdylay

The experimental SPDY protocol version 2, 3 and 3.1 implementation in C
http://tatsuhiro-t.github.io/spdylay/
MIT License
603 stars 102 forks source link

spdy client without TSL #44

Closed pengdev closed 11 years ago

pengdev commented 11 years ago

Hi,

I have a testing task using spdy for comparison, for efficiency consideration, I should use spdy without ssl, could anyone tell me how to disable the TSL in the client? Your help is greatly appreciated.

BR

tatsuhiro-t commented 11 years ago

I just added this feature to spdycat and spdyd. Use --no-tls option to disable SSL/TLS and specify SPDY version number using -2 or -3.

pengdev commented 11 years ago

Great! Now it works, thank you so much.