Skip to content

Commit c20064f

Browse files
committed
Auto merge of #2901 - gco:tcp_keepcnt, r=JohnTitor
Solaris TCP_KEEPINTVL and TCP_KEEPCNT have wrong values
2 parents 6ab0359 + feb971a commit c20064f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/solarish/solaris.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ pub const AF_LOCAL: ::c_int = 0;
3333
pub const AF_FILE: ::c_int = 0;
3434

3535
pub const TCP_KEEPIDLE: ::c_int = 0x1d;
36-
pub const TCP_KEEPCNT: ::c_int = 0x1e;
37-
pub const TCP_KEEPINTVL: ::c_int = 0x1f;
36+
pub const TCP_KEEPINTVL: ::c_int = 0x1e;
37+
pub const TCP_KEEPCNT: ::c_int = 0x1f;
3838

3939
pub const F_DUPFD_CLOEXEC: ::c_int = 47;
4040
pub const F_DUPFD_CLOFORK: ::c_int = 49;

0 commit comments

Comments
 (0)