Ai
1 Star 9 Fork 9

John Yet/rtsp_proxy_server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 401 Bytes
一键复制 编辑 原始数据 按行查看 历史
learnhow 提交于 2020-07-21 11:31 +08:00 . 初始化第一次提交
#include <iostream>
#include <cstring>
#include <stdlib.h>
#include "rtsp_proxy_server.h"
#include "config.h"
int main(int argc, char *argv[])
{
Config *conf = Config::Get();
if(conf->Init("proxy.xml"))
{
RTSPProxyServer *proxy = RTSPProxyServer::NewCreate(conf->GetServerPort());
if(proxy->Init())
{
proxy->Connect();
}
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/learnhow/rtsp_proxy_server.git
git@gitee.com:learnhow/rtsp_proxy_server.git
learnhow
rtsp_proxy_server
rtsp_proxy_server
master

搜索帮助