當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust UnixStream.send_vectored_with_ancillary用法及代碼示例


本文簡要介紹rust語言中 std::os::unix::net::UnixStream.send_vectored_with_ancillary 的用法。

用法

pub fn send_vectored_with_ancillary(    &self,     bufs: &[IoSlice<'_>],     ancillary: &mut SocketAncillary<'_>) -> Result<usize>

在套接字上發送數據和輔助數據。

成功時,返回寫入的字節數。

例子

#![feature(unix_socket_ancillary_data)]
use std::os::unix::net::{UnixStream, SocketAncillary};
use std::io::IoSlice;

fn main() -> std::io::Result<()> {
    let socket = UnixStream::connect("/tmp/sock")?;
    let buf1 = [1; 8];
    let buf2 = [2; 16];
    let buf3 = [3; 8];
    let bufs = &[
        IoSlice::new(&buf1),
        IoSlice::new(&buf2),
        IoSlice::new(&buf3),
    ][..];
    let fds = [0, 1, 2];
    let mut ancillary_buffer = [0; 128];
    let mut ancillary = SocketAncillary::new(&mut ancillary_buffer[..]);
    ancillary.add_fds(&fds[..]);
    socket.send_vectored_with_ancillary(bufs, &mut ancillary)
        .expect("send_vectored_with_ancillary function failed");
    Ok(())
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::os::unix::net::UnixStream.send_vectored_with_ancillary。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。