From 3eda6148c32d4d7b08ad8bbc3460f8dba786242a Mon Sep 17 00:00:00 2001 From: Daniel Collins Date: Thu, 19 Oct 2023 09:27:34 +0100 Subject: [PATCH 1/2] Update readme. --- changes.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changes.txt b/changes.txt index 65c4b44..6fd47d9 100644 --- a/changes.txt +++ b/changes.txt @@ -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). From 55b9793123edf0bc75b31293055c785be3d53cf1 Mon Sep 17 00:00:00 2001 From: Daniel Collins Date: Sun, 19 Nov 2023 15:46:31 +0000 Subject: [PATCH 2/2] Log socket() and ioctlsocket() at the correct level. --- src/winsock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/winsock.c b/src/winsock.c index ed5adf8..b1a9ba3 100644 --- a/src/winsock.c +++ b/src/winsock.c @@ -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)) {