Skip to content
Snippets Groups Projects
  1. Aug 02, 2020
  2. Jul 27, 2020
  3. Jul 26, 2020
  4. Jul 25, 2020
  5. Jul 23, 2020
  6. Jul 18, 2020
  7. Jul 16, 2020
  8. Jul 15, 2020
    • Tatsuhiro Tsujikawa's avatar
      Use struct sockaddr · f18bb854
      Tatsuhiro Tsujikawa authored
      Pass struct sockaddr to ngtcp2 so that it knows how to deal with
      address change in more detailed manner (e.g., just compare IP address
      without port).
      f18bb854
  9. Jul 14, 2020
  10. Jul 05, 2020
  11. Jul 04, 2020
  12. Jun 29, 2020
  13. Jun 28, 2020
  14. Jun 26, 2020
  15. Jun 25, 2020
    • Tatsuhiro Tsujikawa's avatar
      Fix assertion failure because of bad CRYPTO offset provisioning · 65611999
      Tatsuhiro Tsujikawa authored
      This commit fixes the assertion failure which happens when
      acknowledgement of earlier packet increases CRYPTO offset.
      Previously, the offset is always the first CRYPTO frame offset in the
      queue (pktns->crypto.tx.frq).  But passing this into
      ngtcp2_pkt_crypto_max_datalen() underestimates the space because
      acknowledgement might increase offset; it increases the required space
      to serialize offset.
      65611999