Hi ,
I am new in QUIC. and i am trying to setup QUIC client and server on localhost for that i followed below link
https://www.chromium.org/quic/playing-with-quicI am trying to run client and server on port 443 .
Quic server is successfully running on port 443and i am trying to access page using below command
google-chrome --user-data-dir=/tmp/chrome-profile --no-proxy-server --enable-quic --origin-to-force-quic-on=
www.example.org:443 --host-resolver-rules='MAP
www.example.org:443 127.0.0.1:443'
https://www.example.orgIt is showing following error on QUIC server
[0601/190952:VERBOSE1:spdy_utils.cc(164)] Successfully parsed headers:
{
:method:GET
:authority:
www.example.org :scheme:https
:path:/favicon.ico
user-agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
accept:*/*
referer:
https://www.example.org/ accept-encoding:gzip, deflate, sdch
accept-language:en-US,en;q=0.8
}
[0601/190952:VERBOSE1:reliable_quic_stream.cc(346)] Server: Done reading from stream 7
[0601/190952:VERBOSE1:quic_in_memory_cache.cc(143)] Get response for resource failed: host www.example.org path /favicon.ico
[0601/190952:VERBOSE1:quic_simple_server_stream.cc(150)] Response not found in cache.
[0601/190952:VERBOSE1:quic_simple_server_stream.cc(210)] Sending not found response for stream 7[0601/190952:VERBOSE1:spdy_header_block.cc(125)] Inserting: (:status, 404)
[0601/190952:VERBOSE1:spdy_header_block.cc(125)] Inserting: (content-length, 14)
[0601/190952:VERBOSE1:quic_simple_server_stream.cc(243)] Writing headers (fin = 0) :
{
:status:404
content-length:14
}
Please help me how to solve above problem step by step.
Thanks