Support custom STUN servers configuration (#1212)

* Support custom STUN servers

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
fanyang
2025-08-13 10:35:59 +08:00
committed by GitHub
parent a511abb613
commit 35ff9b82fc
11 changed files with 93 additions and 45 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ pub fn find_interface_index(iface_name: &str) -> io::Result<u32> {
tracing::error!("Failed to find interface index for {}", iface_name);
Err(io::Error::new(
io::ErrorKind::NotFound,
format!("{}", iface_name),
iface_name.to_string(),
))
}