mirror of
https://github.com/arut/nginx-rtmp-module.git
synced 2025-08-06 15:00:18 +08:00
25 lines
349 B
C
25 lines
349 B
C
/*
|
|
* Copyright (c) 2012 Roman Arutyunyan
|
|
*/
|
|
|
|
#include "ngx_rtmp.h"
|
|
|
|
ngx_int_t
|
|
ngx_rtmp_connect(ngx_rtmp_session_t *s, ngx_chain_t **l)
|
|
{
|
|
return NGX_OK;
|
|
}
|
|
|
|
ngx_int_t
|
|
ngx_rtmp_close(ngx_rtmp_session_t *s, ngx_chain_t **l)
|
|
{
|
|
return NGX_OK;
|
|
}
|
|
|
|
ngx_int_t
|
|
ngx_rtmp_createstream(ngx_rtmp_session_t *s, ngx_chain_t **l)
|
|
{
|
|
return NGX_OK;
|
|
}
|
|
|