WebRTC系列-Turn协议实现


这章我们使用c实现一个简单的turn协议,本文实现的协议基于 5766实现;

基本属性及结构体

因为项目中要使用到socket及加密,时间戳等需要引入一下系统库:

#include <sys/time.h>
#include <pthread.h>
#include <sys/socket.h>

猜你喜欢

转载自blog.csdn.net/lym594887256/article/details/125742868
今日推荐