summaryrefslogtreecommitdiffstats
path: root/third_party/rust/webrtc-sdp/src/network.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/rust/webrtc-sdp/src/network.rs
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/webrtc-sdp/src/network.rs')
-rw-r--r--third_party/rust/webrtc-sdp/src/network.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/third_party/rust/webrtc-sdp/src/network.rs b/third_party/rust/webrtc-sdp/src/network.rs
new file mode 100644
index 0000000000..9b26c2b013
--- /dev/null
+++ b/third_party/rust/webrtc-sdp/src/network.rs
@@ -0,0 +1,37 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use address::{Address, AddressType};
+use error::SdpParserInternalError;
+use std::net::IpAddr;
+use std::str::FromStr;
+
+pub fn ip_address_to_string(addr: IpAddr) -> String {
+ match addr {
+ IpAddr::V4(ipv4) => format!("IN IP4 {}", ipv4),
+ IpAddr::V6(ipv6) => format!("IN IP6 {}", ipv6),
+ }
+}
+
+pub fn parse_network_type(value: &str) -> Result<(), SdpParserInternalError> {
+ if value.to_uppercase() != "IN" {
+ return Err(SdpParserInternalError::Generic(
+ "nettype must be IN".to_string(),
+ ));
+ };
+ Ok(())
+}
+
+pub fn parse_address_type(value: &str) -> Result<AddressType, SdpParserInternalError> {
+ AddressType::from_str(value.to_uppercase().as_str())
+ .map_err(|_| SdpParserInternalError::Generic("address type must be IP4 or IP6".to_string()))
+}
+
+pub fn parse_unicast_address(value: &str) -> Result<Address, SdpParserInternalError> {
+ Address::from_str(value)
+}
+
+#[cfg(test)]
+#[path = "./network_tests.rs"]
+mod tests;