0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 09:47:56 +08:00

Problem: PLAIN HELLO message incorrectly uses WELCOME literal

Solution: change to HELLO
This commit is contained in:
Simon Giesecke 2019-05-10 03:41:16 -04:00
parent 65dd38b268
commit 6e1c58e86e

View File

@ -32,7 +32,7 @@
namespace zmq
{
const char hello_prefix[] = "\x05WELCOME";
const char hello_prefix[] = "\x05HELLO";
const size_t hello_prefix_len = sizeof (hello_prefix) - 1;
const char welcome_prefix[] = "\x07WELCOME";