Merge branch 'MSG_FLAGS' into 'master'

Add MSG flags for sockets

See merge request redox-os/libredox!22
This commit is contained in:
Jeremy Soller
2026-03-24 11:02:02 -06:00
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -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"
+2
View File
@@ -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};