uquic/example
Carlos Martín Nieto 327856e31c Don't rely on GOPATH to load the certificates or error codes
GOPATH is a list of paths, similar to PATH. If someone does have a list
set, the tests will try to use the full list as a path prefix to load
the certificates, which won't work.

But even handling GOPATH as a list does not solve the issue of what
certificate or error_codes.go file to load, since the code might not be
under the first one it finds.

Instead, use the runtime functionality to get the filename of the path
of the project at compilation time and perform the lookups relative to
that, which guarantees that we're loading the files from the path of the
code that is running.
2016-12-02 13:52:12 +01:00
..
Dockerfile add very simple dockerfile for example server 2016-04-29 12:04:34 +02:00
fullchain.pem update cert for tests 2016-10-02 15:22:31 +02:00
main.go Don't rely on GOPATH to load the certificates or error codes 2016-12-02 13:52:12 +01:00
privkey.pem update cert for tests 2016-10-02 15:22:31 +02:00
Readme.md add a readme to example/ explaining the certificate 2016-07-05 12:30:08 +02:00

About the certificate

Yes, this folder contains a private key and a certificate for quic.clemente.io.

Unfortunately we need a valid certificate for the integration tests with Chrome and quic_client. No important data is served on the "real" quic.clemente.io (only a test page), and the MITM problem is imho negligible.

If you figure out a way to test with Chrome without having a cert and key here, let us now in an issue.