Skip to content

Commit

Permalink
SockProtocol::Raw = libc::IPPROTO_RAW for raw sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on committed Oct 31, 2022
1 parent fbdac70 commit 24d478e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -26,6 +26,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
([#1841](https://github.com/nix-rust/nix/pull/1841))
- Added `eaccess()` on FreeBSD, DragonFly and Linux (glibc and musl).
([#1842](https://github.com/nix-rust/nix/pull/1842))
- Added `SockProtocol::Raw = libc::IPPROTO_RAW` for raw sockets
([#1848](https://github.com/nix-rust/nix/pull/1848))

### Changed

Expand Down
2 changes: 2 additions & 0 deletions src/sys/socket/mod.rs
Expand Up @@ -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"))]
Expand Down

0 comments on commit 24d478e

Please sign in to comment.