tquic icon indicating copy to clipboard operation
tquic copied to clipboard

http3连接创建如何创建?

Open liuguangli opened this issue 7 months ago • 1 comments

struct http3_conn_t *http3_conn_new(struct quic_conn_t *quic_conn, struct http3_config_t *config); 这是文档指引中创建 http3_conn 的方法, 但是入参 quic_conn 如何创建, 没找到相关接口, 求指引

liuguangli avatar May 28 '25 11:05 liuguangli

on_stream_created或on_conn_established回调中创建。启用early data后,服务端on_stream_created有可能先于on_conn_established调用

xiaofei0800 avatar Jun 11 '25 02:06 xiaofei0800