From fdb9e69241d9195fb2059f71f4eed4f4021c7c2f Mon Sep 17 00:00:00 2001 From: Daniel Collins Date: Mon, 12 Sep 2011 18:23:23 +0000 Subject: [PATCH] Updated BIN_FILES, SRC_FILES and changelog. --- Makefile | 7 ++++--- changes.txt | 23 +++++++++++++++++++---- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 7b4f389..55e69fb 100644 --- a/Makefile +++ b/Makefile @@ -26,13 +26,14 @@ CXXFLAGS := $(CFLAGS) IPXWRAPPER_DEPS := src/ipxwrapper.o src/winsock.o src/ipxwrapper_stubs.o src/log.o src/common.o \ src/interface.o src/router.o src/ipxwrapper.def -BIN_FILES := changes.txt license.txt readme.txt ipxwrapper.dll mswsock.dll wsock32.dll ipxconfig.exe +BIN_FILES := changes.txt license.txt readme.txt ipxwrapper.dll mswsock.dll wsock32.dll ipxconfig.exe \ + ipxrouter.exe dpwsockx.dll SRC_FILES := changes.txt license.txt Makefile mkstubs.pl readme.txt src/config.h src/ipxconfig.cpp \ src/ipxwrapper.c src/ipxwrapper.def src/ipxwrapper.h src/ipxwrapper_stubs.txt src/log.c \ src/mswsock.def src/mswsock_stubs.txt src/stubdll.c src/winsock.c src/wsock32.def \ src/wsock32_stubs.txt src/directplay.c src/dpwsockx.def src/dpwsockx_stubs.txt src/common.c \ - src/common.h src/router.c src/router.h include/dplay.h include/dplaysp.h include/dplobby.h \ - include/wsnwlink.h + src/common.h src/router.c src/router.h src/router-exe.c src/interface.c src/interface.h \ + include/dplay.h include/dplaysp.h include/dplobby.h include/wsnwlink.h all: ipxwrapper.dll wsock32.dll mswsock.dll ipxconfig.exe dpwsockx.dll ipxrouter.exe diff --git a/changes.txt b/changes.txt index 2b44bad..d56feaf 100644 --- a/changes.txt +++ b/changes.txt @@ -1,8 +1,4 @@ Version ???: - Feature: DirectPlay support added via custom service provider. - - Update: Isolated router code from the rest of IPXWrapper. - Cleanup: Moved certain library functions out of ipxwrapper.c and tidied up. Cleanup: Removed winstuff.h, added wsnwlink.h from Wine. @@ -10,6 +6,25 @@ Version ???: Cleanup: Merged EnumProtocolsA and EnumProtocolsW into a single function. Cleanup: Locking code partially cleaned up. + + Feature: Support separate router process to allow for multiple processes + using IPX sockets. + + Bugfix: Return correct value when SO_BROADCAST is requested from getsockopt. + + Feature: Support address reuse with SO_REUSEADDR. + + Bugfix: Properly terminate worker threads. + + Bugfix: Load symbols from correct DLL on first try to prevent corruption of + system error code. + + Feature: New DirectPlay service provider for IPX. + + Bugfix: Correctly initialise common controls in ipxconfig. + + Update: Load interfaces on each bind/getsockopt call to allow configuration + changes without restarting. Version 0.2.2: Feature: Redesigned ipxconfig UI.