Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Data Flow (draft-05 : Second Implementation)

 


QUIC Connection/Stream - ATS Client Session/Transaction mapping

...

  • quic-latest : latest branch
  • quic-05 master: draft-05 & Second Implementations ( except HelloRetryRequest 20 (currently)

Development Rules

Pull-Requests

...

Because the official OpenSSL API is not sufficient (even 1.1.1a1c) for QUIC, we need to use customized version.

Code Block
$ git clone --depth 1 --branch quic-draft-1722 https://github.com/tatsuhiro-t/openssl
$ cd openssl
$ ./config --prefix=/PATH/TO/THE/OPENSSL
$ make
$ make install

...

Expand
titleA diff from default records.config


Code Block
languagediff
> CONFIG proxy.config.udp.threads INT 1
23c24
< CONFIG proxy.config.http.server_ports STRING 8080 8080:ipv6
---
> CONFIG proxy.config.http.server_ports STRING 4433:quic
175,176c176,177
< CONFIG proxy.config.diags.debug.enabled INT 0
< CONFIG proxy.config.diags.debug.tags STRING http|dns
---
> CONFIG proxy.config.diags.debug.enabled INT 1
> CONFIG proxy.config.diags.debug.tags STRING quic

...



  • ssl_multicert.config
    •  Please use absolute path to the cert and private key until Issue #2358 is fixed.

...