Add win32 specific files to tarballs.
[srvx.git] / ChangeLog
index bbcef8f2a677934099130da6d5a6e37964aee8e3..255c138e0183733d429af75797705b83f283ed33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,155 @@
 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2006/srvx--devo--1.3
 #
 
+2006-09-22 03:05:54 GMT        Michael Poole <mdpoole@troilus.org>     patch-42
+
+    Summary:
+      Add win32 specific files to tarballs.
+    Revision:
+      srvx--devo--1.3--patch-42
+
+    Makefile.am (EXTRA_DIST): Include Makefile.win32.
+    
+    src/Makefile.am (EXTRA_srvx_SOURCES): Include config.h.win32 and ioset-win32.c.
+
+    modified files:
+     ChangeLog Makefile.am src/Makefile.am
+
+
+2006-09-22 03:02:07 GMT        Michael Poole <mdpoole@troilus.org>     patch-41
+
+    Summary:
+      First pass at native Win32 support (does not compile).
+    Revision:
+      srvx--devo--1.3--patch-41
+
+    src/compat.h: Handle Windows Sockets 2 headers.
+    
+    src/mod-memoserv.c (KEY_READ): #undef'ine to avoid its registry access
+        meaning on Windows.
+    
+    Makefile.win32: New Makefile for native or cross builds targeting Win32.
+    
+    src/config.h.win32: Pregenerated config.h for Win32.
+    
+    src/ioset-win32.c: First attempt at a Win32 ioset backend.
+
+    new files:
+     .arch-ids/Makefile.win32.id Makefile.win32
+     src/.arch-ids/config.h.win32.id src/.arch-ids/ioset-win32.c.id
+     src/config.h.win32 src/ioset-win32.c
+
+    modified files:
+     ChangeLog src/compat.h src/mod-memoserv.c
+
+
+2006-09-22 02:51:50 GMT        Michael Poole <mdpoole@troilus.org>     patch-40
+
+    Summary:
+      Add direct query server module.
+    Revision:
+      srvx--devo--1.3--patch-40
+
+    srvx.conf.example: Document qserver configuration.
+    
+    src/Makefile.am (EXTRA_srvx_SOURCES): Add mod-qserver.c.
+    
+    src/mod-qserver.c: New file.
+
+    new files:
+     src/.arch-ids/mod-qserver.c.id src/mod-qserver.c
+
+    modified files:
+     ChangeLog src/Makefile.am src/ioset-epoll.c srvx.conf.example
+
+
+2006-09-22 02:45:20 GMT        Michael Poole <mdpoole@troilus.org>     patch-39
+
+    Summary:
+      Add epoll_* ioset backend.
+    Revision:
+      srvx--devo--1.3--patch-39
+
+    configure.in: Check for epoll_create(); demote select() from being required.
+    
+    src/Makefile.am (EXTRA_srvx_SOURCES): Add ioset-epoll.c.
+    
+    src/ioset-epoll.c: New file.
+
+    new files:
+     src/.arch-ids/ioset-epoll.c.id src/ioset-epoll.c
+
+    modified files:
+     ChangeLog configure.in src/Makefile.am
+
+
+2006-09-22 02:38:21 GMT        Michael Poole <mdpoole@troilus.org>     patch-38
+
+    Summary:
+      Allow multiple ioset backends.
+    Revision:
+      srvx--devo--1.3--patch-38
+
+    configure.in: Add framework to check for ioset backends.
+    
+    src/Makefile.am (noinst_DATA): Reorganize for easier patching.
+      (checkversion): Avoid spurious error message if $(GNU_ARCH) is missing.
+      (EXTRA_srvx_SOURCES): Reorganize for easier patching; add ioset-select.c.
+      (srvx_SOURCES): Add ioset-impl.h.
+    
+    src/ioset.c (ioset.h): #include "ioset-impl.h" instead.
+      (clock_skew): Make non-static for backends.
+      (engine): New variable.
+      (active_fd): New variable (kind of kludgy).
+      (io_engine_*): New variables, only one exists so far.
+      (ioset_init): New function.
+      (ioset_cleanup): Call engine's cleanup function.
+      (ioset_add): Call engine's add function.
+      (ioset_listen): New function.
+      (ioset_connect): Call engine's update functions at appropriate points.
+      (ioset_try_write): Call engine's update function on success.
+      (ioset_close): Change signature; check against active_fd; call engine's
+        remove function.
+      (ioset_accept): New function.
+      (ioset_buffered_read): Update fd->state instead of fd->eof and call
+        engine's update function as appropriate.  Use active_fd.
+      (ioset_line_read): Check fd->state instead of fd->eof.
+      (debug_fdsets): Move to ioset-select.c.
+      (ioset_events): New function.
+      (ioset_run): Move most of the logic into ioset-select loop function;
+        call it.  Rename "select_timeout" to "timeout" to match.
+      (ioset_write): Call engine->update function.
+      (ioset_printf): New function.
+    
+    src/ioset.h (common.h): #include this header to get PRINTF_LIKE macro.
+      (struct io_fd): Replace 'connected' and 'eof' fields with 'state' field.
+      (ioset_init): Declare new function.
+      (ioset_listen): Declare new function.
+      (ioset_printf): Declare new function.
+      (ioset_close): Update signature.
+    
+    src/main.c (main): Call ioset_init().
+    
+    src/mod-sockcheck.c (sockcheck_free_client): Can unconditionally call
+        ioset_close() now.
+      (expand_var): Always use C99 type names.
+      (sockcheck_begin_test): Can unconditionally call ioset_close() now.
+      (sockcheck_read_conf): Only warn about unknown host if the user set
+        one; it is silly to arn about unknown host `(null)'.
+    
+    src/proto-common.c (socket_destroyed): Check fd->state rather than
+        fd->eof.
+      (close_socket): Update signature for ioset_close().
+
+    new files:
+     src/.arch-ids/ioset-impl.h.id src/.arch-ids/ioset-select.c.id
+     src/ioset-impl.h src/ioset-select.c
+
+    modified files:
+     ChangeLog configure.in src/Makefile.am src/ioset.c src/ioset.h
+     src/main.c src/mod-sockcheck.c src/proto-common.c
+
+
 2006-09-22 02:15:55 GMT        Michael Poole <mdpoole@troilus.org>     patch-37
 
     Summary: