Skip to content

Commit feb971a

Browse files
committed
Solaris TCP_KEEPINTVL and TCP_KEEPCNT have wrong values
1 parent f1c3cfe commit feb971a

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
extern "C" {
4040
pub fn fexecve(

0 commit comments

Comments
 (0)