Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2e08b31f
Commit
2e08b31f
authored
Sep 07, 2011
by
Bruno Jesus
Committed by
Alexandre Julliard
Sep 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Fix support for SIO_KEEPALIVE_VALS.
parent
203d06d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
6 deletions
+41
-6
socket.c
dlls/ws2_32/socket.c
+10
-6
sock.c
dlls/ws2_32/tests/sock.c
+31
-0
No files found.
dlls/ws2_32/socket.c
View file @
2e08b31f
...
@@ -3376,8 +3376,8 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
...
@@ -3376,8 +3376,8 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
k
=
in_buff
;
k
=
in_buff
;
keepalive
=
k
->
onoff
?
1
:
0
;
keepalive
=
k
->
onoff
?
1
:
0
;
keepidle
=
k
->
keepalivetime
/
1000
;
keepidle
=
max
(
1
,
(
k
->
keepalivetime
+
500
)
/
1000
)
;
keepintvl
=
k
->
keepaliveinterval
/
1000
;
keepintvl
=
max
(
1
,
(
k
->
keepaliveinterval
+
500
)
/
1000
)
;
TRACE
(
"onoff: %d, keepalivetime: %d, keepaliveinterval: %d
\n
"
,
keepalive
,
keepidle
,
keepintvl
);
TRACE
(
"onoff: %d, keepalivetime: %d, keepaliveinterval: %d
\n
"
,
keepalive
,
keepidle
,
keepintvl
);
...
@@ -3385,10 +3385,14 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
...
@@ -3385,10 +3385,14 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
if
(
setsockopt
(
fd
,
SOL_SOCKET
,
SO_KEEPALIVE
,
(
void
*
)
&
keepalive
,
sizeof
(
int
))
==
-
1
)
if
(
setsockopt
(
fd
,
SOL_SOCKET
,
SO_KEEPALIVE
,
(
void
*
)
&
keepalive
,
sizeof
(
int
))
==
-
1
)
status
=
WSAEINVAL
;
status
=
WSAEINVAL
;
#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL)
#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL)
else
if
(
setsockopt
(
fd
,
IPPROTO_TCP
,
TCP_KEEPIDLE
,
(
void
*
)
&
keepidle
,
sizeof
(
int
))
==
-
1
)
/* these values need to be set only if SO_KEEPALIVE is enabled */
status
=
WSAEINVAL
;
else
if
(
keepalive
)
else
if
(
setsockopt
(
fd
,
IPPROTO_TCP
,
TCP_KEEPINTVL
,
(
void
*
)
&
keepintvl
,
sizeof
(
int
))
==
-
1
)
{
status
=
WSAEINVAL
;
if
(
keepidle
&&
setsockopt
(
fd
,
IPPROTO_TCP
,
TCP_KEEPIDLE
,
(
void
*
)
&
keepidle
,
sizeof
(
int
))
==
-
1
)
status
=
WSAEINVAL
;
else
if
(
keepintvl
&&
setsockopt
(
fd
,
IPPROTO_TCP
,
TCP_KEEPINTVL
,
(
void
*
)
&
keepintvl
,
sizeof
(
int
))
==
-
1
)
status
=
WSAEINVAL
;
}
#else
#else
else
else
FIXME
(
"ignoring keepalive interval and timeout
\n
"
);
FIXME
(
"ignoring keepalive interval and timeout
\n
"
);
...
...
dlls/ws2_32/tests/sock.c
View file @
2e08b31f
...
@@ -53,6 +53,11 @@
...
@@ -53,6 +53,11 @@
ok ( cond tmp, msg, GetCurrentThreadId(), err); \
ok ( cond tmp, msg, GetCurrentThreadId(), err); \
} while (0);
} while (0);
#define make_keepalive(k, enable, time, interval) \
k.onoff = enable; \
k.keepalivetime = time; \
k.keepaliveinterval = interval;
/* Function pointers */
/* Function pointers */
static
void
(
WINAPI
*
pFreeAddrInfoW
)(
PADDRINFOW
)
=
0
;
static
void
(
WINAPI
*
pFreeAddrInfoW
)(
PADDRINFOW
)
=
0
;
static
int
(
WINAPI
*
pGetAddrInfoW
)(
LPCWSTR
,
LPCWSTR
,
const
ADDRINFOW
*
,
PADDRINFOW
*
)
=
0
;
static
int
(
WINAPI
*
pGetAddrInfoW
)(
LPCWSTR
,
LPCWSTR
,
const
ADDRINFOW
*
,
PADDRINFOW
*
)
=
0
;
...
@@ -2933,6 +2938,7 @@ static void test_addr_to_print(void)
...
@@ -2933,6 +2938,7 @@ static void test_addr_to_print(void)
static
void
test_ioctlsocket
(
void
)
static
void
test_ioctlsocket
(
void
)
{
{
SOCKET
sock
;
SOCKET
sock
;
struct
tcp_keepalive
kalive
;
int
ret
;
int
ret
;
static
const
LONG
cmds
[]
=
{
FIONBIO
,
FIONREAD
,
SIOCATMARK
};
static
const
LONG
cmds
[]
=
{
FIONBIO
,
FIONREAD
,
SIOCATMARK
};
UINT
i
;
UINT
i
;
...
@@ -2972,6 +2978,31 @@ static void test_ioctlsocket(void)
...
@@ -2972,6 +2978,31 @@ static void test_ioctlsocket(void)
ret
=
WSAGetLastError
();
ret
=
WSAGetLastError
();
ok
(
ret
==
WSAEFAULT
||
broken
(
ret
==
WSAEINVAL
),
"expected WSAEFAULT, got %d instead
\n
"
,
ret
);
ok
(
ret
==
WSAEFAULT
||
broken
(
ret
==
WSAEINVAL
),
"expected WSAEFAULT, got %d instead
\n
"
,
ret
);
/* broken used to catch W95, W98, NT4 */
make_keepalive
(
kalive
,
0
,
0
,
0
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
make_keepalive
(
kalive
,
1
,
0
,
0
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
make_keepalive
(
kalive
,
1
,
1000
,
1000
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
make_keepalive
(
kalive
,
1
,
10000
,
10000
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
make_keepalive
(
kalive
,
1
,
100
,
100
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
make_keepalive
(
kalive
,
0
,
100
,
100
);
ret
=
WSAIoctl
(
sock
,
SIO_KEEPALIVE_VALS
,
&
kalive
,
sizeof
(
struct
tcp_keepalive
),
NULL
,
0
,
&
arg
,
NULL
,
NULL
);
ok
(
ret
==
0
||
broken
(
ret
==
SOCKET_ERROR
),
"WSAIoctl failed unexpectedly
\n
"
);
closesocket
(
sock
);
closesocket
(
sock
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment