Skip to content

Commit da547c9

Browse files
committed
Fix turn ServerConfig in ice.
1 parent 9ea7b2a commit da547c9

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

ice/src/agent/agent_vnet_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ pub(crate) async fn add_vnet_stun(wan_net: Arc<net::Net>) -> Result<turn::server
237237
realm: "webrtc.rs".to_owned(),
238238
auth_handler: Arc::new(TestAuthHandler::new()),
239239
channel_bind_timeout: Duration::from_secs(0),
240+
alloc_close_notify: None,
240241
})
241242
.await?;
242243

ice/src/candidate/candidate_relay_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ async fn test_relay_only_connection() -> Result<(), Error> {
6161
}),
6262
}],
6363
channel_bind_timeout: Duration::from_secs(0),
64+
alloc_close_notify: None,
6465
})
6566
.await?;
6667

ice/src/candidate/candidate_server_reflexive_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ async fn test_server_reflexive_only_connection() -> Result<()> {
4040
}),
4141
}],
4242
channel_bind_timeout: Duration::from_secs(0),
43+
alloc_close_notify: None,
4344
})
4445
.await?;
4546

0 commit comments

Comments
 (0)