Displaying 5 results from an estimated 5 matches for "so_acceptconn".
1999 Sep 30
1
A little utility for checking socket settings
...ys/socket.h> /* For socket() */
#include <netinet/in.h> /* For protocol numbers. */
#include <netinet/tcp.h> /* For options. */
typedef struct option_t {
int name;
char *printable;
} OPTION;
main() {
int s;
OPTION so_option[] = {
{ SO_ACCEPTCONN, "SO_ACCEPTCON: accepting connections"
},
{ SO_BROADCAST, "SO_BROADCAST, broadcast allowed" },
{ SO_REUSEADDR, "SO_REUSEADDR, address recycling" },
{ SO_KEEPALIVE, "SO_KEEPALIVE, send keepalive packets"
},...
2013 Aug 02
0
Wine release 1.7.0
...wineps.drv: Allow for vertical text printing.
Bruno Jesus (10):
ws2_32/tests: Add listen() tests for TCP sockets.
ws2_32: Fix listen() implementation.
ws2_32/tests: Add more tests for WSASocket().
kernel32/tests: Add tests for GetVolumePathNameA().
ws2_32/tests: Add SO_ACCEPTCONN tests.
ws2_32: Fix service flags returned from TCP and UDP protocols.
ws2_32/tests: Fix bad usage of WSAGetLastError() in tests.
ws2_32/tests: Test the precedence of parameters while creating a socket in WSASocket().
ws2_32: Simplify WINSOCK_EnterSingleProtocolA using the W...
2013 Sep 27
0
Wine release 1.7.3
...ocket creation if WSAStartup was not called.
ws2_32: Make getsockopt(SO_TYPE) convert the returned socket type.
ws2_32/tests: Mark WinNT result as broken.
ws2_32: ConnectEx should not work on unbound socket.
server: Fix a comment.
ws2_32: Add missing else to getsockopt(SO_ACCEPTCONN).
ws2_32: Fix some parameters checking in AcceptEx.
Dmitry Timoshkov (22):
shlwapi/tests: Add a read/write test for IStream on files.
shlwapi: Write file access also assumes read access.
windowscodecs: Implement CreateBitmapFromHBITMAP.
shlwapi/tests: Fix stream test...
2013 Sep 13
0
Wine release 1.7.2
...:
server: Store the protocol while creating the socket.
server: Add a request to get socket information.
ws2_32: Merge protocol.c and socket.c.
ws2_32: Cope with invalid protocols in WSAEnumProtocols.
ws2_32: Add parameters TRACE for WS_EnumProtocols.
ws2_32: Fix SO_ACCEPTCONN on BSD systems.
ws2_32: Remove a FIXME message.
ws2_32/tests: Mark WinNT result as broken.
ws2_32: Implement WSADuplicateSocket[A|W] using a helper function.
kernel32: Fix parameters checking for GetVolumePathName().
ws2_32: Implement get socket option SO_PROTOCOL_INFO...
2006 Oct 13
0
Wine release 0.9.23
...mCDFlag in local variables.
Nick Burns (2):
msvcrt/process.h: __stdcall__ defined safely for Mac OSX.
winegcc: __stdcall__ and __cdecl__ defined safely for Mac OSX.
Nickolay V. Shmyrev (1):
winex11.drv: Always set window type.
Nicolas Delcros (1):
winsock: Add mapping for SO_ACCEPTCONN.
Oleg Krylov (1):
user: Fix CopyImage function declaration.
Paul Chitescu (2):
netapi: Stub for DsGetDcNameA.
mscoree: Initial stub implementation.
Paul Vriens (17):
crypt32: Added some CryptSIP stub implementations.
advapi32: Make sure it's a real cleanup....