scripting.c source code better organized into sections.

This commit is contained in:
antirez
2015-11-05 10:36:52 +01:00
parent 9639f9c0ef
commit 1fb2b91a37
2 changed files with 182 additions and 155 deletions

View File

@ -267,6 +267,7 @@ typedef long long mstime_t; /* millisecond time type. */
#define CLIENT_REPLY_OFF (1<<22) /* Don't send replies to client. */
#define CLIENT_REPLY_SKIP_NEXT (1<<23) /* Set CLIENT_REPLY_SKIP for next cmd */
#define CLIENT_REPLY_SKIP (1<<24) /* Don't send just this reply. */
#define CLIENT_LUA_DEBUG (1<<25) /* Run EVAL in debug mode. */
/* Client block type (btype field in client structure)
* if CLIENT_BLOCKED flag is set. */