1
0
mirror of https://github.com/solemnwarning/ipxwrapper synced 2024-12-30 16:45:37 +01:00

Merge branch 'master' into profiling

This commit is contained in:
Daniel Collins 2023-11-19 16:00:50 +00:00
commit 30c7556ef1
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
Version TBA:
Version 0.7.0:
Added support for DOSBox IPX servers.
Fixed implementation of FIONREAD ioctl (needed for Laser Arena).

View File

@ -325,7 +325,7 @@ static void release_recv_queue(ipx_recv_queue *recv_queue)
SOCKET WSAAPI socket(int af, int type, int protocol)
{
log_printf(LOG_DEBUG, "socket(%d, %d, %d)", af, type, protocol);
log_printf(LOG_CALL, "socket(%d, %d, %d)", af, type, protocol);
if(af == AF_IPX)
{
@ -1793,7 +1793,7 @@ int PASCAL ioctlsocket(SOCKET fd, long cmd, u_long *argp)
if(sock)
{
log_printf(LOG_DEBUG, "ioctlsocket(%d, %d)", fd, cmd);
log_printf(LOG_CALL, "ioctlsocket(%d, %d)", fd, cmd);
if(cmd == FIONREAD && !(sock->flags & IPX_IS_SPX))
{