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
d5f7f74f
Commit
d5f7f74f
authored
Jul 31, 2013
by
Bruno Jesus
Committed by
Alexandre Julliard
Aug 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32/tests: Test the precedence of parameters while creating a socket in WSASocket().
parent
d7f21681
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
sock.c
dlls/ws2_32/tests/sock.c
+14
-0
No files found.
dlls/ws2_32/tests/sock.c
View file @
d5f7f74f
...
@@ -1733,7 +1733,21 @@ todo_wine
...
@@ -1733,7 +1733,21 @@ todo_wine
FROM_PROTOCOL_INFO
,
&
pi
[
0
],
0
,
0
);
FROM_PROTOCOL_INFO
,
&
pi
[
0
],
0
,
0
);
ok
(
sock
!=
INVALID_SOCKET
,
"Failed to create socket: %d
\n
"
,
ok
(
sock
!=
INVALID_SOCKET
,
"Failed to create socket: %d
\n
"
,
WSAGetLastError
());
WSAGetLastError
());
closesocket
(
sock
);
/* find what parameters are used first: plain parameters or protocol info struct */
pi
[
0
].
iProtocol
=
IPPROTO_UDP
;
pi
[
0
].
iSocketType
=
SOCK_DGRAM
;
pi
[
0
].
iAddressFamily
=
AF_INET
;
sock
=
WSASocketA
(
AF_INET
,
SOCK_STREAM
,
IPPROTO_TCP
,
&
pi
[
0
],
0
,
0
);
ok
(
sock
!=
INVALID_SOCKET
,
"Failed to create socket: %d
\n
"
,
WSAGetLastError
());
size
=
sizeof
(
socktype
);
socktype
=
0xdead
;
err
=
getsockopt
(
sock
,
SOL_SOCKET
,
SO_TYPE
,
(
char
*
)
&
socktype
,
&
size
);
ok
(
!
err
,
"getsockopt failed with %d
\n
"
,
WSAGetLastError
());
ok
(
socktype
==
SOCK_STREAM
,
"Wrong socket type, expected %d received %d
\n
"
,
SOCK_STREAM
,
socktype
);
closesocket
(
sock
);
closesocket
(
sock
);
HeapFree
(
GetProcessHeap
(),
0
,
pi
);
HeapFree
(
GetProcessHeap
(),
0
,
pi
);
...
...
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