How to detect if a server is using SPDY

前端 未结 2 1538
无人及你
无人及你 2021-02-08 02:28

Any way to detect if a remote website supports SPDY and what version it is?

Something I can use from the command line like a bash script.

Tried sending custom Us

2条回答
  •  抹茶落季
    2021-02-08 03:09

    openssl s_client -connect google.com:443 -nextprotoneg ''
    CONNECTED(00000003)
    Protocols advertised by server: spdy/3.1, spdy/3, http/1.1
    

提交回复
热议问题