mirror of
https://github.com/arut/nginx-rtmp-module.git
synced 2025-08-06 15:00:18 +08:00
fixed typo
This commit is contained in:
@ -724,7 +724,7 @@ ngx_rtmp_exec_close_stream(ngx_rtmp_session_t *s, ngx_rtmp_close_stream_t *v)
|
|||||||
ngx_rtmp_exec_kill(e, e->kill_signal);
|
ngx_rtmp_exec_kill(e, e->kill_signal);
|
||||||
}
|
}
|
||||||
|
|
||||||
ppctx = &eacf->pull[ngx_hash_key(pctx->name.data, pctx->name.len) &
|
ppctx = &eacf->pull[ngx_hash_key(pctx->name.data, pctx->name.len) %
|
||||||
eacf->nbuckets];
|
eacf->nbuckets];
|
||||||
|
|
||||||
for (; *ppctx; ppctx = &(*ppctx)->next) {
|
for (; *ppctx; ppctx = &(*ppctx)->next) {
|
||||||
@ -828,7 +828,7 @@ ngx_rtmp_exec_init_pull_ctx(ngx_rtmp_session_t *s,
|
|||||||
|
|
||||||
len = ngx_strlen(name);
|
len = ngx_strlen(name);
|
||||||
|
|
||||||
ppctx = &eacf->pull[ngx_hash_key(name, len) & eacf->nbuckets];
|
ppctx = &eacf->pull[ngx_hash_key(name, len) % eacf->nbuckets];
|
||||||
|
|
||||||
for (; *ppctx; ppctx = &(*ppctx)->next) {
|
for (; *ppctx; ppctx = &(*ppctx)->next) {
|
||||||
pctx = *ppctx;
|
pctx = *ppctx;
|
||||||
|
Reference in New Issue
Block a user