双向认证过程 #130
Answered
by
xiaofei0800
ValorBao
asked this question in
Q&A (问题和回答)
双向认证过程
#130
-
收到服务器的server_hello,但是没有收到服务器下一个handshake包,当收到服务器的server_hello,需要做什么处理吗? |
Beta Was this translation helpful? Give feedback.
Answered by
xiaofei0800
Jan 8, 2024
Replies: 1 comment
-
使用时不需要关注具体的握手报文。收到服务端报文后,通过quic_endpoint_recv将报文递交给TQUIC协议栈,然后通过quic_endpoint_process_connections处理连接事件,可参考C示例客户端程序中的process_connections函数。 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ValorBao
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
使用时不需要关注具体的握手报文。收到服务端报文后,通过quic_endpoint_recv将报文递交给TQUIC协议栈,然后通过quic_endpoint_process_connections处理连接事件,可参考C示例客户端程序中的process_connections函数。