We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
constants.h contains error codes. But the library provides no way to get a human-readable error message out of it.
constants.h
E.g. there is QUICLY_ERROR_FREE_CONNECTION 0xff03. It would be convenient to have an API function like:
QUICLY_ERROR_FREE_CONNECTION 0xff03
const char* quicly_error_str(int error_code);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
constants.h
contains error codes. But the library provides no way to get a human-readable error message out of it.E.g. there is
QUICLY_ERROR_FREE_CONNECTION 0xff03
.It would be convenient to have an API function like:
The text was updated successfully, but these errors were encountered: