After successful asynchronous certificate validation, file transfer from client to server is not successful. #4906
Replies: 1 comment 4 replies
-
Currently, the QUIC_CONNECTION_EVENT_CONNECTED event is not being received as the connection is not fully established before the validation completes. Instead of returning QUIC_STATUS_PENDING,I am allowing the connection to proceed without blocking it. The validation still happens in a separate thread, and I handle the result of the validation asynchronously. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OS: Linux
PFA the output when I try to run. I am currently not implementing mTLS. Only trying to authenticate the client.
> 'MsQuic->ConnectionCertificateValidationComplete(Connection, TRUE, QUIC_TLS_ALERT_CODE_SUCCESS);'
I have also created a structure to hold the validation result, so that a response will be sent back to the main thread to indicate whether the certificate is valid or invalid.
I am using a combination of a condition variable along with a mutex to synchronize the result back to the main thread. This way, the main thread can wait for the validation result and then decide whether to proceed with the file transfer.
But even after doing this, I am facing the same error.
After calling MsQuic->ConnectionCertificateValidationComplete, the server should be ready to accept data from the client but how do I ensure that ? When certificate is valid, how do we resume callbacks to connect ?
Beta Was this translation helpful? Give feedback.
All reactions