]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
Stop access to global vars. Not configurable.
[redis.git] / src / redis.h
index bd4ef5a119b2947a844ed16bf4075af458db04bb..5a3d1a9c5f42f987f374b5f8bd74fec0ffa0f17f 100644 (file)
@@ -717,7 +717,6 @@ struct redisServer {
     int lua_timedout;     /* True if we reached the time limit for script
                              execution. */
     int lua_kill;         /* Kill the script if true. */
-    int lua_protect_globals;    /* If true globals must be declared */
     /* Assert & bug reportign */
     char *assert_failed;
     char *assert_file;
@@ -1103,8 +1102,6 @@ void clusterPropagatePublish(robj *channel, robj *message);
 
 /* Scripting */
 void scriptingInit(void);
-void scriptingEnableGlobalsProtection(lua_State *lua);
-void scriptingDisableGlobalsProtection(lua_State *lua);
 
 /* Git SHA1 */
 char *redisGitSHA1(void);