From 38597988f4d62357d0670fe0d3f4134b291be030 Mon Sep 17 00:00:00 2001 From: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Date: Mon, 21 Nov 2022 20:26:16 +0300 Subject: [PATCH] Added `SockProtocol::Raw = libc::IPPROTO_RAW` for raw sockets --- CHANGELOG.md | 2 ++ src/sys/socket/mod.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a5efc2a70..9c580fc893 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). ([#1853](https://github.com/nix-rust/nix/pull/1853)) - Added `new_unnamed` and `is_unnamed` for `UnixAddr` on Linux and Android. ([#1857](https://github.com/nix-rust/nix/pull/1857)) +- Added `SockProtocol::Raw` for raw sockets + ([#1848](https://github.com/nix-rust/nix/pull/1848)) ### Changed diff --git a/src/sys/socket/mod.rs b/src/sys/socket/mod.rs index af19c52dfd..37a4037cd8 100644 --- a/src/sys/socket/mod.rs +++ b/src/sys/socket/mod.rs @@ -118,6 +118,8 @@ pub enum SockProtocol { Tcp = libc::IPPROTO_TCP, /// UDP protocol ([ip(7)](https://man7.org/linux/man-pages/man7/ip.7.html)) Udp = libc::IPPROTO_UDP, + /// Raw sockets ([raw(7)](https://man7.org/linux/man-pages/man7/raw.7.html)) + Raw = libc::IPPROTO_RAW, /// Allows applications and other KEXTs to be notified when certain kernel events occur /// ([ref](https://developer.apple.com/library/content/documentation/Darwin/Conceptual/NKEConceptual/control/control.html)) #[cfg(any(target_os = "ios", target_os = "macos"))]