Skip to content

Commit

Permalink
Auto merge of #2901 - gco:tcp_keepcnt, r=JohnTitor
Browse files Browse the repository at this point in the history
Solaris TCP_KEEPINTVL and TCP_KEEPCNT have wrong values
  • Loading branch information
bors committed Sep 11, 2022
2 parents 6ab0359 + feb971a commit c20064f
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;

pub const F_DUPFD_CLOEXEC: ::c_int = 47;
pub const F_DUPFD_CLOFORK: ::c_int = 49;
Expand Down

0 comments on commit c20064f

Please sign in to comment.