Skip to content

Commit

Permalink
Solaris TCP_KEEPINTVL and TCP_KEEPCNT have wrong values
Browse files Browse the repository at this point in the history
  • Loading branch information
gco committed Sep 5, 2022
1 parent f1c3cfe commit feb971a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix/solarish/solaris.rs
Expand Up @@ -33,8 +33,8 @@ pub const AF_LOCAL: ::c_int = 0;
pub const AF_FILE: ::c_int = 0;

pub const TCP_KEEPIDLE: ::c_int = 0x1d;
pub const TCP_KEEPCNT: ::c_int = 0x1e;
pub const TCP_KEEPINTVL: ::c_int = 0x1f;
pub const TCP_KEEPINTVL: ::c_int = 0x1e;
pub const TCP_KEEPCNT: ::c_int = 0x1f;

extern "C" {
pub fn fexecve(
Expand Down

0 comments on commit feb971a

Please sign in to comment.