mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-04 23:29:42 +00:00
CLEANUP: lua: remove the session pointer from hlua_channel
It was only used to find what side the channel belongs to.
This commit is contained in:
parent
6c6dc16505
commit
f6870521e5
@ -133,7 +133,6 @@ struct hlua_socket {
|
|||||||
*/
|
*/
|
||||||
struct hlua_channel {
|
struct hlua_channel {
|
||||||
struct channel *chn;
|
struct channel *chn;
|
||||||
struct session *s;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#else /* USE_LUA */
|
#else /* USE_LUA */
|
||||||
|
@ -2077,7 +2077,6 @@ static int hlua_channel_new(lua_State *L, struct session *s, struct channel *cha
|
|||||||
chn = MAY_LJMP(lua_newuserdata(L, sizeof(*chn)));
|
chn = MAY_LJMP(lua_newuserdata(L, sizeof(*chn)));
|
||||||
lua_rawseti(L, -2, 0);
|
lua_rawseti(L, -2, 0);
|
||||||
chn->chn = channel;
|
chn->chn = channel;
|
||||||
chn->s = s;
|
|
||||||
|
|
||||||
/* Pop a class sesison metatable and affect it to the userdata. */
|
/* Pop a class sesison metatable and affect it to the userdata. */
|
||||||
lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
|
lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
|
||||||
|
Loading…
Reference in New Issue
Block a user