当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust SocketAddrV6.flowinfo用法及代码示例


本文简要介绍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 6Section 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-lang.org大神的英文原创作品 std::net::SocketAddrV6.flowinfo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。