quic_predef.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright 2023-2025 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_PREDEF_H
  10. # define OSSL_QUIC_PREDEF_H
  11. # ifndef OPENSSL_NO_QUIC
  12. typedef struct ssl_token_store_st SSL_TOKEN_STORE;
  13. typedef struct quic_port_st QUIC_PORT;
  14. typedef struct quic_channel_st QUIC_CHANNEL;
  15. typedef struct quic_txpim_st QUIC_TXPIM;
  16. typedef struct quic_fifd_st QUIC_FIFD;
  17. typedef struct quic_cfq_st QUIC_CFQ;
  18. typedef struct ossl_quic_tx_packetiser_st OSSL_QUIC_TX_PACKETISER;
  19. typedef struct ossl_ackm_st OSSL_ACKM;
  20. typedef struct quic_srt_elem_st QUIC_SRT_ELEM;
  21. typedef struct ossl_cc_data_st OSSL_CC_DATA;
  22. typedef struct ossl_cc_method_st OSSL_CC_METHOD;
  23. typedef struct quic_stream_map_st QUIC_STREAM_MAP;
  24. typedef struct quic_stream_st QUIC_STREAM;
  25. typedef struct quic_sstream_st QUIC_SSTREAM;
  26. typedef struct quic_rstream_st QUIC_RSTREAM;
  27. typedef struct quic_reactor_st QUIC_REACTOR;
  28. typedef struct quic_reactor_wait_ctx_st QUIC_REACTOR_WAIT_CTX;
  29. typedef struct ossl_statm_st OSSL_STATM;
  30. typedef struct quic_demux_st QUIC_DEMUX;
  31. typedef struct ossl_qrx_st OSSL_QRX;
  32. typedef struct ossl_qrx_pkt_st OSSL_QRX_PKT;
  33. typedef struct ossl_qtx_pkt_st OSSL_QTX_PKT;
  34. typedef struct quic_tick_result_st QUIC_TICK_RESULT;
  35. typedef struct quic_srtm_st QUIC_SRTM;
  36. typedef struct quic_lcidm_st QUIC_LCIDM;
  37. typedef struct quic_urxe_st QUIC_URXE;
  38. typedef struct quic_engine_st QUIC_ENGINE;
  39. typedef struct quic_obj_st QUIC_OBJ;
  40. typedef struct quic_conn_st QUIC_CONNECTION;
  41. typedef struct quic_xso_st QUIC_XSO;
  42. typedef struct quic_listener_st QUIC_LISTENER;
  43. typedef struct quic_domain_st QUIC_DOMAIN;
  44. # endif
  45. #endif