Skip to content

Commit c8086b6

Browse files
dndxdoujiang24
authored andcommitted
bugfix: ignore the raw argument when acquiring UDP request socket.
sync with meta-lua-nginx-module e1f1f20.
1 parent 9c53258 commit c8086b6

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

src/ngx_stream_lua_socket_udp.c

+12
Original file line numberDiff line numberDiff line change
@@ -1678,6 +1678,7 @@ ngx_stream_lua_udp_socket_cleanup(void *data)
16781678
int
16791679
ngx_stream_lua_req_socket_udp(lua_State *L)
16801680
{
1681+
int n;
16811682
ngx_stream_lua_udp_connection_t *pc;
16821683
ngx_stream_lua_srv_conf_t *lscf;
16831684
ngx_connection_t *c;
@@ -1689,6 +1690,17 @@ ngx_stream_lua_req_socket_udp(lua_State *L)
16891690

16901691
ngx_stream_lua_socket_udp_upstream_t *u;
16911692

1693+
n = lua_gettop(L);
1694+
1695+
if (n != 0 && n != 1) {
1696+
return luaL_error(L, "expecting zero arguments, but got %d",
1697+
lua_gettop(L));
1698+
}
1699+
1700+
if (n == 1) {
1701+
lua_pop(L, 1);
1702+
}
1703+
16921704
r = ngx_stream_lua_get_req(L);
16931705

16941706
ctx = ngx_stream_lua_get_module_ctx(r, ngx_stream_lua_module);

t/142-req-udp-socket.t

+32
Original file line numberDiff line numberDiff line change
@@ -211,3 +211,35 @@ got the request socket
211211
--- grep_error_log_out
212212
stream lua finalize socket
213213
GC cycle done
214+
215+
216+
217+
=== TEST 6: ngx.req.socket with raw argument, argument is ignored
218+
--- dgram_server_config
219+
content_by_lua_block {
220+
local sock, err = ngx.req.socket(true)
221+
if not sock then
222+
ngx.log(ngx.ERR, "failed to get the request socket: ", err)
223+
return ngx.exit(ngx.ERROR)
224+
end
225+
226+
local data, err = sock:receive()
227+
if not data then
228+
ngx.log(ngx.ERR, "failed to receive: ", err)
229+
return ngx.exit(ngx.ERROR)
230+
end
231+
232+
-- print("data: ", data)
233+
234+
local ok, err = sock:send("received: " .. data)
235+
if not ok then
236+
ngx.log(ngx.ERR, "failed to send: ", err)
237+
return ngx.exit(ngx.ERROR)
238+
end
239+
}
240+
--- dgram_request chomp
241+
hello world! my
242+
--- dgram_response chomp
243+
received: hello world! my
244+
--- no_error_log
245+
[error]

0 commit comments

Comments
 (0)