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
Hi, I found this code in server.js line 82:
... } else if (response.header.status == 0x20) { ...
there is no status 0x20 specified in the protocol, what does it mean?
The text was updated successfully, but these errors were encountered:
a 0x20 status code means authentication is required in order to continue: https://github.com/memcached/memcached/blob/master/protocol_binary.h#L71
(For the future, I'd rather answer these sorts of questions (clarifications on the code or protocol) over e-mail rather than issues)
Sorry, something went wrong.
No branches or pull requests
Hi, I found this code in server.js line 82:
...
} else if (response.header.status == 0x20) {
...
there is no status 0x20 specified in the protocol, what does it mean?
The text was updated successfully, but these errors were encountered: