IIya, thank you so much.
The error is due to my gcc compiler and the internet proxy in my company. After I reinstall the latest gcc and do some configuration, I successfully finish the compling.
However I came across another question when i test quic as below page:
http://www.chromium.org/quic/playing-with-quicAfter i wget "
https://www.example.org", i can't find the content asked to manually edited as below:
- remove "Transfer-Encoding: chunked"
- remove "Alternate-Protocol: ..." (the example config calls for port 6121 below)
- add X-Original-Url: https://www.example.org/
if i don't manually edith index.html, some failure happened when performing quic test. In the quic_client side, it outputs as below:
./out/Default/quic_client --host=127.0.0.1 --port=6121 https://www.example.org/
Connected to 127.0.0.1:6121
Request:
headers:
:authority: www.example.org
:method: GET
:path: /
:scheme: https
body:
Response:
headers: HTTP/1.1 500 OK
status: 500
content-length: 3
body: bad
Request failed (500).
In the quic_server side, it outputs as below:
./out/Default/quic_server --quic_in_memory_cache_dir=/tmp/quic-data/
www.example.org --certificate_file=net/tools/quic/certs/out/leaf_cert.pem --key_file=net/tools/quic/certs/out/leaf_cert.pkcs8
[1216/052728:WARNING:quic_framer.cc(593)] Unable to process packet header. Stopping parsing.
Can you kindly give some more help on the test of quic?