src/nexus.c
Fri, 15 May 2009 00:05:01 +0300 Tero Marttila don't keep console SIGINT behaviour after it was destroyed, instead, have nexus handle it like SIGTERM, and have console override that
Thu, 07 May 2009 02:46:44 +0300 Tero Marttila rename sock_ssl/sock_gnutls -> ssl/ssl_client
Mon, 04 May 2009 23:19:50 +0300 Tero Marttila replace old SIGINT handling with SIGTERM, and have SIGINT just abort the console input line. Now EOF (^D) will cause lua_console to nexus_shutdown
Sun, 19 Apr 2009 04:04:42 +0300 Tero Marttila implement ssl_cafile/verify/cert/pkey for x509 credentials
Thu, 16 Apr 2009 01:20:09 +0300 Tero Marttila implement sock_ssl_connect_async (the old sock_ssl_connect exists no more)
Sun, 12 Apr 2009 22:19:54 +0300 Tero Marttila implement console_print and log_set_func
Sun, 12 Apr 2009 18:35:16 +0300 Tero Marttila update TODO, partially update error.c, rename module_get to modules_get, update config.lua
Wed, 08 Apr 2009 01:28:46 +0300 Tero Marttila modify config to support options with multiple params/values
Thu, 02 Apr 2009 02:55:32 +0300 Tero Marttila fix refcount semantics for module_load and have module_unload call module_unloaded on module_desc::unload errors
Thu, 02 Apr 2009 02:25:35 +0300 Tero Marttila fix operation of module_unload/module_destroy so that unloaded modules are now destroyed once they have been unloaded
Wed, 01 Apr 2009 19:31:11 +0300 Tero Marttila fix some more valgrind errors
Wed, 01 Apr 2009 01:41:08 +0300 Tero Marttila add nexus_lua_error for unified LUA_ERR* -> ERR_LUA_* mapping, and lua configuration support
Wed, 01 Apr 2009 00:57:34 +0300 Tero Marttila implement a separate nexus_lua module
Wed, 01 Apr 2009 00:27:39 +0300 Tero Marttila implement nexus_shutdown, lua_modules/lua_module, and lua_nexus
Tue, 31 Mar 2009 23:36:05 +0300 Tero Marttila improve the config module futher, now the module_desc interface uses structured config_value's
Tue, 31 Mar 2009 22:09:53 +0300 Tero Marttila add irc_client_defaults to apply default values for irc_client_add_net irc_net_info, implement --defaults cmd opt and lua_client_connect
Tue, 31 Mar 2009 19:35:51 +0300 Tero Marttila add some rudimentary lua support, by having a simple interactive console, and providing access to irc_client_quit
Tue, 31 Mar 2009 15:41:24 +0300 Tero Marttila add a simple interactive readline console
Fri, 27 Mar 2009 17:22:43 +0200 Tero Marttila add config module and modify irc_log/nexus to use it
Fri, 27 Mar 2009 00:08:23 +0200 Tero Marttila add --debug option to nexus
Mon, 16 Mar 2009 23:55:30 +0200 Tero Marttila implement signal_ignore using sigaction directly, without any libevent in between
Mon, 16 Mar 2009 23:34:05 +0200 Tero Marttila implement module unloading, although module_destroy is currently never called
Mon, 16 Mar 2009 01:14:36 +0200 Tero Marttila all options are now fully implemented
Mon, 16 Mar 2009 01:03:41 +0200 Tero Marttila add --module support, and tweak irc_net docs
Mon, 16 Mar 2009 00:55:07 +0200 Tero Marttila start reworking option-parsing, but --module/--config is still unimplemented
Mon, 16 Mar 2009 00:09:53 +0200 Tero Marttila temporarily disable evsql stuff build-cmake
Sun, 15 Mar 2009 23:01:12 +0200 Tero Marttila compiling, working, but still ugly module code modules
Sun, 15 Mar 2009 01:17:22 +0200 Tero Marttila 'working' modules code, and convert irc_log to use said interface, but we've hit the limits on our Makefile, and the compiled module doesn't really work modules
Fri, 13 Mar 2009 16:10:48 +0200 Tero Marttila add irc_client module, plus nexus.h header
Thu, 12 Mar 2009 23:54:03 +0200 Tero Marttila add irc_net_quit and signal handling
Tue, 10 Mar 2009 01:11:12 +0200 Tero Marttila add irc_chan module
Mon, 09 Mar 2009 16:30:59 +0200 Tero Marttila add irc_net module, and fix Makefile CFLAGS, add -Wextra
Sun, 08 Mar 2009 17:17:37 +0200 Tero Marttila add a simple irc_log module (with evsql code) that joins a channel and log_info's PRIVMSGs
Sun, 01 Mar 2009 02:02:48 +0200 Tero Marttila add missing irc_cmd.h, and modify line_proto/irc_conn to use log
Sun, 01 Mar 2009 01:48:14 +0200 Tero Marttila add basic log.c module
Sat, 28 Feb 2009 22:47:39 +0200 Tero Marttila add initial irc_conn code that can register
Sat, 28 Feb 2009 21:39:15 +0200 Tero Marttila irc_line implementation
Sat, 28 Feb 2009 20:23:37 +0200 Tero Marttila missing break
Sat, 28 Feb 2009 20:21:53 +0200 Tero Marttila add some simple command-line options
Sat, 28 Feb 2009 19:58:49 +0200 Tero Marttila fix sock_gnutls_read/write EAGAIN
Sat, 28 Feb 2009 19:08:51 +0200 Tero Marttila add support for \n line endings as well
Sat, 28 Feb 2009 18:48:10 +0200 Tero Marttila update sock_stream_read/write semantics for EOF/EAGAIN, tentative event-based gnutls code
Sat, 28 Feb 2009 17:39:37 +0200 Tero Marttila working event-based operation for sock_tcp
Sun, 22 Feb 2009 10:16:28 +0200 Tero Marttila fix sock_stream read/write return value, move line buffer inside of line_proto, add some initial code for event-based non-blocking operation
Sun, 22 Feb 2009 08:48:21 +0200 Tero Marttila add sock_stream_callbacks and ev_base
Sun, 22 Feb 2009 08:21:22 +0200 Tero Marttila split off line_proto, and make sock_stream_error return a const error_info
Sun, 22 Feb 2009 07:53:34 +0200 Tero Marttila and then error_msg
Sun, 22 Feb 2009 07:21:28 +0200 Tero Marttila add error_name function
Sun, 22 Feb 2009 07:08:57 +0200 Tero Marttila ERROR-ify sock_gnutls
Sun, 22 Feb 2009 06:52:55 +0200 Tero Marttila change ERROR_* to use pointers again, and implement error_info for sock_init
Sun, 22 Feb 2009 05:27:29 +0200 Tero Marttila working SSL using gnutls - a bit of a painful process
Sun, 22 Feb 2009 03:57:44 +0200 Tero Marttila a fancy socket abstraction layer, with TCP, next, SSL. Also, .hgignore
Sun, 22 Feb 2009 02:00:34 +0200 Tero Marttila initial code...