WinterChen

Results 3 comments of WinterChen

redis server is not supported the commond: CLUSTER NODES

In objs/Makefile the -Werror flag is set, which is a compiler flag that causes all warnings to be treated as build errors. delete the -Werror flag, compile successfully with warnings

I read the code carefully, the function ngx_stream_close_connection is static defined in ngx_stream_handler.c, `static void ngx_stream_close_connection(ngx_connection_t *c);` it can not be used externally. I replace ngx_stream_close_connection whit ngx_stream_finalize_session, and complile...