本文簡要介紹rust語言中 std::net::SocketAddrV6.flowinfo
的用法。
用法
pub fn flowinfo(&self) -> u32
返回與此地址關聯的流信息。
此信息對應於 C 的 netinet/in.h
中的 sin6_flowinfo
字段,如 IETF RFC 2553, Section 3.3 中指定。它結合了 IETF RFC 2460 中指定的流標簽和流量類別的信息,分別是 Section 6 和 Section 7 。
例子
use std::net::{SocketAddrV6, Ipv6Addr};
let socket = SocketAddrV6::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1), 8080, 10, 0);
assert_eq!(socket.flowinfo(), 10);
相關用法
- Rust SocketAddrV6.ip用法及代碼示例
- Rust SocketAddrV6.set_ip用法及代碼示例
- Rust SocketAddrV6.new用法及代碼示例
- Rust SocketAddrV6.set_scope_id用法及代碼示例
- Rust SocketAddrV6.scope_id用法及代碼示例
- Rust SocketAddrV6.set_port用法及代碼示例
- Rust SocketAddrV6.set_flowinfo用法及代碼示例
- Rust SocketAddrV6.port用法及代碼示例
- Rust SocketAddrV6用法及代碼示例
- Rust SocketAddrV4.ip用法及代碼示例
- Rust SocketAddrV4.set_port用法及代碼示例
- Rust SocketAddrV4.set_ip用法及代碼示例
- Rust SocketAddrV4.new用法及代碼示例
- Rust SocketAddrV4.port用法及代碼示例
- Rust SocketAddrV4用法及代碼示例
- Rust SocketAddr.port用法及代碼示例
- Rust SocketAddr.as_abstract_namespace用法及代碼示例
- Rust SocketAddr.as_pathname用法及代碼示例
- Rust SocketAddr用法及代碼示例
- Rust SocketAddr.is_ipv6用法及代碼示例
- Rust SocketAddr.from_abstract_namespace用法及代碼示例
- Rust SocketAddr.is_ipv4用法及代碼示例
- Rust SocketAddr.set_port用法及代碼示例
- Rust SocketAddr.ip用法及代碼示例
- Rust SocketAddr.new用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::net::SocketAddrV6.flowinfo。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。