quic_statm.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OSSL_QUIC_STATS_H
  10. # define OSSL_QUIC_STATS_H
  11. # include <openssl/ssl.h>
  12. # include "internal/time.h"
  13. # ifndef OPENSSL_NO_QUIC
  14. typedef struct ossl_statm_st {
  15. OSSL_TIME smoothed_rtt, latest_rtt, min_rtt, rtt_variance;
  16. char have_first_sample;
  17. } OSSL_STATM;
  18. typedef struct ossl_rtt_info_st {
  19. /* As defined in RFC 9002. */
  20. OSSL_TIME smoothed_rtt, latest_rtt, rtt_variance, min_rtt;
  21. } OSSL_RTT_INFO;
  22. int ossl_statm_init(OSSL_STATM *statm);
  23. void ossl_statm_destroy(OSSL_STATM *statm);
  24. void ossl_statm_get_rtt_info(OSSL_STATM *statm, OSSL_RTT_INFO *rtt_info);
  25. void ossl_statm_update_rtt(OSSL_STATM *statm,
  26. OSSL_TIME ack_delay,
  27. OSSL_TIME override_latest_rtt);
  28. # endif
  29. #endif