Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
301cbf0a
Unverified
Commit
301cbf0a
authored
May 12, 2022
by
mtdxc
Committed by
GitHub
May 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支持多个rtc候选地址 (#1622)
* 支持多个rtc候选地址 * fixed missing extern_ips check
parent
943deab6
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
42 行增加
和
18 行删除
+42
-18
conf/config.ini
+1
-1
webrtc/WebRtcTransport.cpp
+41
-16
webrtc/WebRtcTransport.h
+0
-1
没有找到文件。
conf/config.ini
查看文件 @
301cbf0a
...
...
@@ -266,7 +266,7 @@ port_range=30000-35000
[rtc]
#rtc播放推流、播放超时时间
timeoutSec
=
15
#本机对rtc客户端的可见ip,作为服务器时一般为公网ip,置空时,会自动获取网卡ip
#本机对rtc客户端的可见ip,作为服务器时一般为公网ip,
可有多个,用','分开,当
置空时,会自动获取网卡ip
externIP
=
#rtc udp服务器监听端口号,所有rtc客户端将通过该端口传输stun/dtls/srtp/srtcp数据,
#该端口是多线程的,同时支持客户端网络切换导致的连接迁移
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
301cbf0a
...
...
@@ -471,10 +471,15 @@ void WebRtcTransportImp::onStartWebRTC() {
void
WebRtcTransportImp
::
onCheckAnswer
(
RtcSession
&
sdp
)
{
//修改answer sdp的ip、端口信息
GET_CONFIG
(
string
,
extern_ip
,
RTC
::
kExternIP
);
GET_CONFIG_FUNC
(
std
::
vector
<
std
::
string
>
,
extern_ips
,
RTC
::
kExternIP
,
[](
string
str
){
std
::
vector
<
std
::
string
>
ret
;
if
(
str
.
length
())
ret
=
split
(
str
,
","
);
return
ret
;
});
for
(
auto
&
m
:
sdp
.
media
)
{
m
.
addr
.
reset
();
m
.
addr
.
address
=
extern_ip
.
empty
()
?
SockUtil
::
get_local_ip
()
:
extern_ip
;
m
.
addr
.
address
=
extern_ip
s
.
empty
()
?
SockUtil
::
get_local_ip
()
:
extern_ips
[
0
]
;
m
.
rtcp_addr
.
reset
();
m
.
rtcp_addr
.
address
=
m
.
addr
.
address
;
...
...
@@ -522,28 +527,48 @@ void WebRtcTransportImp::onCheckSdp(SdpType type, RtcSession &sdp) {
}
}
void
WebRtcTransportImp
::
onRtcConfigure
(
RtcConfigure
&
configure
)
const
{
WebRtcTransport
::
onRtcConfigure
(
configure
);
//添加接收端口candidate信息
configure
.
addCandidate
(
*
getIceCandidate
());
}
SdpAttrCandidate
::
Ptr
WebRtcTransportImp
::
getIceCandidate
()
const
{
SdpAttrCandidate
::
Ptr
makeIceCandidate
(
std
::
string
ip
,
uint16_t
port
,
uint32_t
priority
=
100
,
std
::
string
proto
=
"udp"
)
{
auto
candidate
=
std
::
make_shared
<
SdpAttrCandidate
>
();
candidate
->
foundation
=
"udpcandidate"
;
//rtp端口
candidate
->
component
=
1
;
candidate
->
transport
=
"udp"
;
candidate
->
transport
=
proto
;
candidate
->
foundation
=
proto
+
"candidate"
;
//优先级,单candidate时随便
candidate
->
priority
=
100
;
GET_CONFIG
(
string
,
extern_ip
,
RTC
::
kExternIP
);
candidate
->
address
=
extern_ip
.
empty
()
?
SockUtil
::
get_local_ip
()
:
extern_ip
;
GET_CONFIG
(
uint16_t
,
local_port
,
RTC
::
kPort
);
candidate
->
port
=
local_port
;
candidate
->
priority
=
priority
;
candidate
->
address
=
ip
;
candidate
->
port
=
port
;
candidate
->
type
=
"host"
;
return
candidate
;
}
void
WebRtcTransportImp
::
onRtcConfigure
(
RtcConfigure
&
configure
)
const
{
WebRtcTransport
::
onRtcConfigure
(
configure
);
GET_CONFIG
(
uint16_t
,
local_port
,
RTC
::
kPort
);
//添加接收端口candidate信息
GET_CONFIG_FUNC
(
std
::
vector
<
std
::
string
>
,
extern_ips
,
RTC
::
kExternIP
,
[](
string
str
){
std
::
vector
<
std
::
string
>
ret
;
if
(
str
.
length
())
ret
=
split
(
str
,
","
);
return
ret
;
});
if
(
extern_ips
.
empty
())
{
std
::
string
localIp
=
SockUtil
::
get_local_ip
();
configure
.
addCandidate
(
*
makeIceCandidate
(
localIp
,
local_port
,
120
,
"udp"
));
}
else
{
const
uint32_t
delta
=
10
;
uint32_t
priority
=
100
+
delta
*
extern_ips
.
size
();
for
(
auto
ip
:
extern_ips
)
{
configure
.
addCandidate
(
*
makeIceCandidate
(
ip
,
local_port
,
priority
,
"udp"
));
priority
-=
delta
;
}
}
}
///////////////////////////////////////////////////////////////////
class
RtpChannel
:
public
RtpTrackImp
,
public
std
::
enable_shared_from_this
<
RtpChannel
>
{
...
...
webrtc/WebRtcTransport.h
查看文件 @
301cbf0a
...
...
@@ -264,7 +264,6 @@ protected:
void
updateTicker
();
private
:
SdpAttrCandidate
::
Ptr
getIceCandidate
()
const
;
void
onSortedRtp
(
MediaTrack
&
track
,
const
std
::
string
&
rid
,
mediakit
::
RtpPacket
::
Ptr
rtp
);
void
onSendNack
(
MediaTrack
&
track
,
const
mediakit
::
FCI_NACK
&
nack
,
uint32_t
ssrc
);
void
onSendTwcc
(
uint32_t
ssrc
,
const
std
::
string
&
twcc_fci
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论