Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2f0e8c08
Commit
2f0e8c08
authored
Jun 22, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32/tests: Test setting SO_ACCEPTCONN.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2fb11821
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
sock.c
dlls/ws2_32/tests/sock.c
+24
-0
No files found.
dlls/ws2_32/tests/sock.c
View file @
2f0e8c08
...
...
@@ -2856,6 +2856,18 @@ static void test_listen(void)
ok
(
!
ret
,
"getsockopt failed
\n
"
);
ok
(
acceptc
==
0
,
"SO_ACCEPTCONN should be 0, received %d
\n
"
,
acceptc
);
acceptc
=
1
;
WSASetLastError
(
0xdeadbeef
);
ret
=
setsockopt
(
fdA
,
SOL_SOCKET
,
SO_ACCEPTCONN
,
(
char
*
)
&
acceptc
,
sizeof
(
acceptc
));
ok
(
ret
==
-
1
,
"expected failure
\n
"
);
ok
(
WSAGetLastError
()
==
WSAENOPROTOOPT
,
"got error %u
\n
"
,
WSAGetLastError
());
acceptc
=
0
;
WSASetLastError
(
0xdeadbeef
);
ret
=
setsockopt
(
fdA
,
SOL_SOCKET
,
SO_ACCEPTCONN
,
(
char
*
)
&
acceptc
,
sizeof
(
acceptc
));
ok
(
ret
==
-
1
,
"expected failure
\n
"
);
ok
(
WSAGetLastError
()
==
WSAENOPROTOOPT
,
"got error %u
\n
"
,
WSAGetLastError
());
ok
(
!
listen
(
fdA
,
0
),
"listen failed
\n
"
);
ok
(
!
listen
(
fdA
,
SOMAXCONN
),
"double listen failed
\n
"
);
...
...
@@ -2864,6 +2876,18 @@ static void test_listen(void)
ok
(
!
ret
,
"getsockopt failed
\n
"
);
ok
(
acceptc
==
1
,
"SO_ACCEPTCONN should be 1, received %d
\n
"
,
acceptc
);
acceptc
=
1
;
WSASetLastError
(
0xdeadbeef
);
ret
=
setsockopt
(
fdA
,
SOL_SOCKET
,
SO_ACCEPTCONN
,
(
char
*
)
&
acceptc
,
sizeof
(
acceptc
));
ok
(
ret
==
-
1
,
"expected failure
\n
"
);
ok
(
WSAGetLastError
()
==
WSAENOPROTOOPT
,
"got error %u
\n
"
,
WSAGetLastError
());
acceptc
=
0
;
WSASetLastError
(
0xdeadbeef
);
ret
=
setsockopt
(
fdA
,
SOL_SOCKET
,
SO_ACCEPTCONN
,
(
char
*
)
&
acceptc
,
sizeof
(
acceptc
));
ok
(
ret
==
-
1
,
"expected failure
\n
"
);
ok
(
WSAGetLastError
()
==
WSAENOPROTOOPT
,
"got error %u
\n
"
,
WSAGetLastError
());
SetLastError
(
0xdeadbeef
);
ok
((
listen
(
fdB
,
SOMAXCONN
)
==
SOCKET_ERROR
),
"listen did not fail
\n
"
);
ret
=
WSAGetLastError
();
...
...
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