From f7d8dbdab9baacf425fba64f6786fd9f05fd2d5d Mon Sep 17 00:00:00 2001 From: Prudhviraj K Date: Mon, 20 Jun 2022 11:16:14 -0700 Subject: fix the hashstring size for evcache ketama add proxy_debug flag for protocol handler in verbose printing --- memcached.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'memcached.c') diff --git a/memcached.c b/memcached.c index 41518d2..fd36377 100644 --- a/memcached.c +++ b/memcached.c @@ -730,6 +730,10 @@ conn *conn_new(const int sfd, enum conn_states init_state, fprintf(stderr, "<%d new ascii client connection.\n", sfd); } else if (c->protocol == binary_prot) { fprintf(stderr, "<%d new binary client connection.\n", sfd); +#ifdef PROXY + } else if (c->protocol == proxy_prot) { + fprintf(stderr, "<%d new proxy client connection.\n", sfd); +#endif } else { fprintf(stderr, "<%d new unknown (%d) client connection\n", sfd, c->protocol); -- cgit v1.2.1