shared fill args func

This commit is contained in:
Roman Arutyunyan 2014-01-02 18:22:53 +04:00
parent ef424df677
commit 732b44883c
2 changed files with 5 additions and 1 deletions

View file

@ -94,7 +94,7 @@ ngx_module_t ngx_rtmp_cmd_module = {
};
static void
void
ngx_rtmp_cmd_fill_args(u_char name[NGX_RTMP_MAX_NAME],
u_char args[NGX_RTMP_MAX_ARGS])
{

View file

@ -97,6 +97,10 @@ typedef struct {
} ngx_rtmp_set_buflen_t;
void ngx_rtmp_cmd_fill_args(u_char name[NGX_RTMP_MAX_NAME],
u_char args[NGX_RTMP_MAX_ARGS]);
typedef ngx_int_t (*ngx_rtmp_connect_pt)(ngx_rtmp_session_t *s,
ngx_rtmp_connect_t *v);
typedef ngx_int_t (*ngx_rtmp_disconnect_pt)(ngx_rtmp_session_t *s);