You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
311 B
19 lines
311 B
|
|
/*
|
|
* Copyright (C) Roman Arutyunyan
|
|
*/
|
|
|
|
|
|
#ifndef _NGX_RTMP_PROXY_PROTOCOL_H_INCLUDED_
|
|
#define _NGX_RTMP_PROXY_PROTOCOL_H_INCLUDED_
|
|
|
|
|
|
#include <ngx_config.h>
|
|
#include <ngx_core.h>
|
|
#include "ngx_rtmp.h"
|
|
|
|
|
|
void ngx_rtmp_proxy_protocol(ngx_rtmp_session_t *c);
|
|
|
|
|
|
#endif /* _NGX_RTMP_PROXY_PROTOCOL_H_INCLUDED_ */
|
|
|