mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-03-17 11:30:54 +08:00
优化代码
空构造和析构函数替换为缺省 去除多余分号
This commit is contained in:
@@ -260,16 +260,16 @@ int start_main(int argc,char *argv[]) {
|
||||
auto shellSrv = std::make_shared<TcpServer>();
|
||||
|
||||
//rtsp[s]服务器, 可用于诸如亚马逊echo show这样的设备访问
|
||||
auto rtspSrv = std::make_shared<TcpServer>();;
|
||||
auto rtspSSLSrv = std::make_shared<TcpServer>();;
|
||||
auto rtspSrv = std::make_shared<TcpServer>();
|
||||
auto rtspSSLSrv = std::make_shared<TcpServer>();
|
||||
|
||||
//rtmp[s]服务器
|
||||
auto rtmpSrv = std::make_shared<TcpServer>();;
|
||||
auto rtmpsSrv = std::make_shared<TcpServer>();;
|
||||
auto rtmpSrv = std::make_shared<TcpServer>();
|
||||
auto rtmpsSrv = std::make_shared<TcpServer>();
|
||||
|
||||
//http[s]服务器
|
||||
auto httpSrv = std::make_shared<TcpServer>();;
|
||||
auto httpsSrv = std::make_shared<TcpServer>();;
|
||||
auto httpSrv = std::make_shared<TcpServer>();
|
||||
auto httpsSrv = std::make_shared<TcpServer>();
|
||||
|
||||
#if defined(ENABLE_RTPPROXY)
|
||||
//GB28181 rtp推流端口,支持UDP/TCP
|
||||
|
||||
Reference in New Issue
Block a user