Bruno Jesus
344cddb63a
ws2_32/tests: Add WSAPoll() tests.
...
Signed-off-by: Bruno Jesus <00cpxxx@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2015-11-09 16:44:52 +09:00
Erich E. Hoover
effd2c4192
ws2_32: Add asynchronous support for TransmitFile.
...
Signed-off-by: Erich E. Hoover <erich.e.hoover@wine-staging.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2015-10-21 19:19:08 +09:00
Erich E. Hoover
f1ebc93603
ws2_32: Add support for TransmitFile headers and footers.
...
Signed-off-by: Erich E. Hoover <erich.e.hoover@wine-staging.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2015-10-20 00:30:40 +09:00
Erich E. Hoover
4d081f36ef
ws2_32: Implement a basic synchronous TransmitFile.
...
Signed-off-by: Erich E. Hoover <erich.e.hoover@wine-staging.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2015-10-20 00:30:40 +09:00
Bruno Jesus
ad2405daa4
ws2_32/tests: Add WSAEnumNameSpaceProviders[A|W] tests.
...
Signed-off-by: Bruno Jesus <00cpxxx@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2015-10-12 22:09:55 +09:00
Erich E. Hoover
109d4b914a
ws2_32: Check for invalid parameters in TransmitFile.
...
Signed-off-by: Erich E. Hoover <erich.e.hoover@wine-staging.com>
2015-10-07 21:28:55 +09:00
Sebastian Lackner
efb1b16dc8
ws2_32/tests: Add tests for InetPtonW.
...
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
2015-10-05 22:27:15 +09:00
André Hentschel
d0a5a32546
ws2_32/tests: Don't test function directly when reporting WSAGetLastError().
2015-09-25 20:59:33 +02:00
Marcus Meissner
5af9acadb6
ws2_32/tests: Fixed argument to GetComputerNameExW.
2015-09-10 17:22:43 +09:00
Bruno Jesus
4e01388a32
ws2_32/tests: Remove a dead assignment.
2015-09-09 16:18:21 +09:00
Bruno Jesus
18a02d8f41
ws2_32: Try harder to get the host name address in getaddrinfo.
2015-09-08 14:50:42 +09:00
Bruno Jesus
45677e173d
ws2_32: UDP sockets can write data even when unbound.
2015-06-19 17:01:05 +09:00
Bruno Jesus
213419961c
ws2_32/tests: Add UDP select() test for unbound socket.
2015-06-16 16:51:26 +09:00
Sebastian Lackner
3d51b4eb9d
ws2_32/tests: Add tests for calling select with zero timeout.
2015-06-08 15:30:32 +09:00
Bruno Jesus
3c16babcce
ws2_32/tests: Fix a couple of wrong traces.
2015-05-14 14:24:44 +09:00
Sebastian Lackner
0d2817b161
ws2_32: Properly handle closing sockets during a select call.
...
Based on a patch by Bruno Jesus.
2015-05-05 23:15:31 +09:00
Francois Gouget
9561037fe0
ws2_32/tests: Add a trailing '\n' to an ok() call.
2015-04-23 19:43:28 +09:00
Bruno Jesus
383ed3ce9a
ws2_32/tests: Add one more SO_ERROR test.
2015-04-14 16:50:48 +09:00
Bruno Jesus
2da8f9a9db
ws2_32/tests: Add more select() tests.
2015-04-13 15:08:49 +09:00
Bruno Jesus
61ed82fc86
ws2_32: Restore the local socket address that was bound with filter for getsockname().
2015-04-09 13:26:29 +09:00
Bruno Jesus
dcfde9a9df
ws2_32/tests: Add tests about retrieving the local address of an interface bound socket.
2015-04-09 13:26:24 +09:00
Bruno Jesus
71c60d15d3
ws2_32: Handle SO_ERROR manually in getsockopt().
...
As soon as SO_ERROR is read from getsockopt it is reset in the kernel,
when attempting a non-blocking connection the wine server reads
SO_ERROR first so when the application tries to read the value it will
end with zero.
2015-04-08 23:16:40 +09:00
Bruno Jesus
f01ccea4b5
ws2_32/tests: Add some more select() related tests.
2015-04-08 23:15:55 +09:00
Bruno Jesus
e845bded34
ws2_32: Fix return value when receiving with MSG_OOB without data to read.
2015-03-31 14:49:50 +09:00
Bruno Jesus
45d64ce26b
ws2_32/tests: Skip part of OOB test to unfreeze NT4 test.
...
NT4 doesn't care about OOB_INLINE and receives data in the wrong recv
call so the next call never receives data and hangs forever. Skip it
to resume NT4 test normally.
2015-03-31 14:49:31 +09:00
Bruno Jesus
5103291645
ws2_32/tests: Add more WSAEnumNetworkEvents tests.
2015-03-31 14:49:25 +09:00
Bruno Jesus
10d51ce855
ws2_32: Check for OOB data in select() calls when not OOB_INLINED.
2015-03-30 16:32:50 +09:00
Bruno Jesus
10f7265270
ws2_32: Do not poll unbound descriptors.
2015-03-30 16:32:36 +09:00
Bruno Jesus
b2556a2c34
ws2_32: Ensure sockets in exceptfds get set when an error occurs.
2015-03-30 16:31:53 +09:00
Frédéric Delanoy
f6a341c747
Assorted spelling/grammar fixes.
2015-03-27 22:29:48 +09:00
Bruno Jesus
a19febc1a7
ws2_32/tests: Check the OOB mark in the right place.
2015-03-16 15:08:46 +09:00
Bruno Jesus
8042dbac55
ws2_32/tests: Improve some helper functions.
2015-03-16 15:08:38 +09:00
Qian Hong
bed1525fa4
ws2_32: Improved error handling in gethostname when name length is insufficient.
2015-03-13 22:28:30 +09:00
Bruno Jesus
0415407404
ws2_32/tests: Add more select() tests related to OOB handling.
2015-03-13 00:28:15 +09:00
Bruno Jesus
18b3f4cadd
ws2_32/tests: Test the behavior of reading data from an OOBINLINE'd socket.
2015-03-11 12:48:13 +09:00
Bruno Jesus
3e676b205d
ws2_32/tests: Add more select() tests.
2015-03-08 17:47:07 +09:00
Bruno Jesus
4ca53984e4
ws2_32/tests: Improve setup_connector_socket to allow non-blocking connect calls.
2015-03-08 17:47:05 +09:00
Bruno Jesus
9eaf92d62a
ws2_32/test: Don't test unsupported IP_MULTICAST_TTL on NT4.
2015-03-08 17:47:03 +09:00
Bruno Jesus
a65ae0ea57
ws2_32/tests: Fix a NT4 crash due to unsupported SIO_ADDRESS_LIST_QUERY.
2015-03-08 17:47:00 +09:00
Bruno Jesus
2522e205ec
ws2_32/tests: Move second WSACleanup test elsewhere.
2015-03-08 17:46:56 +09:00
Michael Stefaniuc
bbe2c58261
ws2_32/tests: Actually test a return value (PVS-Studio).
2015-03-04 21:50:46 +09:00
Michael Stefaniuc
4c36ef1d4e
ws2_32/tests: Remove an unused assignment (PVS-Studio).
2015-03-04 21:50:45 +09:00
Erich E. Hoover
c15c7a4925
ws2_32/tests: Add an interactive test for interface change notifications.
2015-02-10 22:57:48 +09:00
Bruno Jesus
038399fcdd
ws2_32: getaddrinfo must SetLastError on success or failure.
2015-01-20 11:11:43 +01:00
Bruno Jesus
ab1eee505b
ws2_32: Ensure recv functions set last error to zero when they succeed.
2015-01-13 17:52:04 +01:00
Bruno Jesus
35a887acc5
ws2_32/tests: Show that send/recv functions set last error to zero on success.
2015-01-09 11:50:08 +01:00
Bruno Jesus
9d9e1cc9ae
ws2_32: Ensure an IPv6 is not recognized as IPv4 in WSAStringToAddress.
2014-12-31 11:37:18 +01:00
Bruno Jesus
1c4cb63036
ws2_32: Implement getsockopt(SO_BSP_STATE).
2014-12-09 20:05:58 +01:00
Bruno Jesus
d7a8beb0f7
ws2_32: Filter unset bits when argument is smaller than 32 bits.
2014-12-05 20:47:40 +01:00
Bruno Jesus
14324fec97
ws2_32/tests: Add SO_BSP_STATE tests.
2014-12-05 20:47:30 +01:00