linux_net_bindings/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

// C API bingings based on /usr/include/linux/if.h and
// /usr/include/linux/if_tun.h.

#![expect(missing_docs)]
#![cfg(unix)]
// UNSAFETY: bindgen generated code.
#![expect(unsafe_code)]

use nix::ioctl_write_ptr_bad;
use nix::request_code_write;
use std::os::raw::c_int;

// Generated using:
//
// bindgen --no-layout-tests --with-derive-default --wrap-unsafe-ops --no-doc-comments /usr/include/linux/if.h
#[allow(non_camel_case_types)]
#[allow(non_upper_case_globals)]
#[expect(clippy::missing_safety_doc)]
#[expect(clippy::undocumented_unsafe_blocks)]
#[expect(clippy::ref_as_ptr)]
#[expect(clippy::ptr_as_ptr)]
pub mod gen_if;

// Generated using:
//
// bindgen --no-layout-tests --with-derive-default --wrap-unsafe-ops --no-doc-comments /usr/include/linux/if_tun.h
#[allow(non_camel_case_types)]
#[allow(non_upper_case_globals)]
#[expect(clippy::missing_safety_doc)]
#[expect(clippy::undocumented_unsafe_blocks)]
#[expect(clippy::ref_as_ptr)]
#[expect(clippy::ptr_as_ptr)]
pub mod gen_if_tun;

// #define TUNSETIFF     _IOW('T', 202, int)
ioctl_write_ptr_bad!(
    tun_set_iff,
    request_code_write!(b'T', 202, size_of::<c_int>()),
    gen_if::ifreq
);