scripting.c source code better organized into sections.

This commit is contained in:
antirez
2015-11-05 10:36:52 +01:00
parent 71aa9b75f2
commit 9aa1f94449
2 changed files with 182 additions and 155 deletions

View File

@ -250,6 +250,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. */