From 098ded3e87a1409d189c6e23f815534a49dc6a30 Mon Sep 17 00:00:00 2001 From: Sellier Alexis Date: Wed, 3 Jun 2015 16:29:34 +0200 Subject: [PATCH] App name was not copied when creating relay --- ngx_rtmp_relay_module.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ngx_rtmp_relay_module.c b/ngx_rtmp_relay_module.c index b0f5fec..7c9a4bb 100644 --- a/ngx_rtmp_relay_module.c +++ b/ngx_rtmp_relay_module.c @@ -499,6 +499,7 @@ ngx_rtmp_relay_create_connection(ngx_rtmp_conf_ctx_t *cctx, ngx_str_t* name, rctx->session = rs; ngx_rtmp_set_ctx(rs, rctx, ngx_rtmp_relay_module); ngx_str_set(&rs->flashver, "ngx-local-relay"); + ngx_cpymem(&rs->app, &rctx->app, sizeof(rctx->app)); #if (NGX_STAT_STUB) (void) ngx_atomic_fetch_add(ngx_stat_active, 1);