From c7b39521e4beba9f80a0bb92a1e112ecf00262db Mon Sep 17 00:00:00 2001 From: Benton60 Date: Wed, 18 Mar 2026 14:11:07 -0400 Subject: [PATCH 1/2] add MSG flags for sockets --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 406529af86..e600b2e2c2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -115,6 +115,8 @@ pub mod flag { O_NONBLOCK, O_PATH, O_RDONLY, O_RDWR, O_TRUNC, O_WRONLY, }; + pub use libc::{MSG_DONTROUTE, MSG_OOB, MSG_PEEK, MSG_DONTWAIT, MSG_EOR, }; + pub use libc::{CLOCK_MONOTONIC, CLOCK_REALTIME}; pub use libc::{SIG_BLOCK, SIG_SETMASK, SIG_UNBLOCK}; From 477f6e6ae980e380d11332522e7b83081f8918ff Mon Sep 17 00:00:00 2001 From: Benton60 Date: Wed, 18 Mar 2026 19:46:24 -0400 Subject: [PATCH 2/2] bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4e7020b889..9d22a0b4ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libredox" authors = ["4lDO2 <4lDO2@protonmail.com>"] -version = "0.1.14" +version = "0.1.15" edition = "2021" license = "MIT" description = "Redox stable ABI"