添加c api测试范例

This commit is contained in:
xiongziliang
2019-12-23 14:01:00 +08:00
parent 2da0c884a1
commit 6796d0b592
4 changed files with 49 additions and 1 deletions

21
api/tests/server.cpp Normal file
View File

@@ -0,0 +1,21 @@
//
// Created by xzl on 2019/12/23.
//
#include <csignal>
#include "mediakit.h"
#include "unistd.h"
int main(int argc,char *argv[]){
mk_env_init1(0,0,0, nullptr,0, nullptr, nullptr);
mk_http_server_start(80,false);
mk_rtsp_server_start(554,false);
mk_rtmp_server_start(1935,false);
mk_rtp_server_start(10000);
static bool flag = true;
signal(SIGINT, [](int) { flag = false; });// 设置退出信号
while (flag){
sleep(1);
}
}