Skip to content
Snippets Groups Projects
Commit b4747855 authored by bors's avatar bors Committed by GitHub
Browse files

Auto merge of #408 - kali:master, r=alexcrichton

add MSG_NOSIGNAL (linux, android)

see rust-lang/rust#36426
parents 2b8ea091 6d940f66
No related branches found
No related tags found
No related merge requests found
......@@ -468,6 +468,8 @@ pub const IPV6_V6ONLY: ::c_int = 26;
pub const SO_DEBUG: ::c_int = 1;
pub const MSG_NOSIGNAL: ::c_int = 0x4000;
pub const SHUT_RD: ::c_int = 0;
pub const SHUT_WR: ::c_int = 1;
pub const SHUT_RDWR: ::c_int = 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment