1 Star 0 Fork 2

THZ/New_V4L2_Video_Server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_main.c 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
/********************************************************
* Copyright (C) 2016 All rights reserved.
*
* Filename:main.c
* Author :WM
* Date :2017-2-17
* Describe:
*
********************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include "myserver_thread_pool.h"
#include "myserver_net.h"
#include "myserver_process.h"
#include "live555_media_server.h"
int main (int argc, char **argv)
{
/*if(argc != 2){
printf("Usage:./xxx port!\n");
exit(EXIT_FAILURE);
}*/
//初始化线程池
pool_init(100);
thread_send_alarm_init();
live555_media_server_init();
int socket_fd,*conn_fd;
if(0>server_net_init(&socket_fd)){
printf("server net init failed!\n");
exit(EXIT_FAILURE);
}
printf("server net init success!\n");
socklen_t client_addr_len = sizeof(client_addr);
memset(&client_addr,0,client_addr_len);
while(1)
{
conn_fd = (int *)malloc(sizeof(int));
if((*conn_fd = accept(socket_fd,(struct sockaddr *)(&client_addr),&client_addr_len)) == -1)
{
perror("accept error!");
exit(-1);
}
//执行process,将process任务交给线程池
pool_add_task(my_net_process,conn_fd);
}
close(socket_fd);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ldtythz/New_V4L2_Video_Server.git
git@gitee.com:ldtythz/New_V4L2_Video_Server.git
ldtythz
New_V4L2_Video_Server
New_V4L2_Video_Server
master

搜索帮助