mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-22 22:31:28 +02:00
BUG/MINOR: lua: fix setting netfilter mark
In the REORG of commit 1a18b5414 ("REORG: connection: centralize the conn_set_{tos,mark,quickack} functions") a bug was introduced by calling conn_set_tos instead of conn_set_mark. This was reported in issue #212 This should be backported to 1.9 and 2.0.
This commit is contained in:
parent
59dd06d659
commit
579e3e3dd5
@ -5376,7 +5376,7 @@ __LJMP static int hlua_txn_set_mark(lua_State *L)
|
|||||||
htxn = MAY_LJMP(hlua_checktxn(L, 1));
|
htxn = MAY_LJMP(hlua_checktxn(L, 1));
|
||||||
mark = MAY_LJMP(luaL_checkinteger(L, 2));
|
mark = MAY_LJMP(luaL_checkinteger(L, 2));
|
||||||
|
|
||||||
conn_set_tos(objt_conn(htxn->s->sess->origin), mark);
|
conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user