Sat, 23 May 2009 00:33:23 +0300 Tero Marttila fix lua_thread_resume_state to not call lua_resume from a CFunction executing in the same state; lua_thread_done is now unprotected... default
Thu, 21 May 2009 17:08:47 +0300 Tero Marttila merge lua_thread_setup bcak into _lua_thread_start, as everything can be done on the main lua state
Thu, 21 May 2009 16:57:56 +0300 Tero Marttila implement lua_console_on_interrupt to abort any executing thread
Thu, 21 May 2009 16:57:28 +0300 Tero Marttila add a console_callbacks::on_interrupt callback triggered by SIGINT while waiting
Thu, 21 May 2009 16:57:00 +0300 Tero Marttila fix lua_nexus_sleep to use lua_thread_yield_state
Thu, 21 May 2009 16:56:42 +0300 Tero Marttila implement lua_thread_abort, add lua_thread_yield_state func, and fix lua_thread_resume_state to use protected mode
Thu, 21 May 2009 16:55:56 +0300 Tero Marttila accept NULL for log function fmt arg
Thu, 21 May 2009 16:24:52 +0300 Tero Marttila merge lua-threads branch, all lua_console input is now executed in a new lua thread
Thu, 21 May 2009 16:23:50 +0300 Tero Marttila fix lua_nexus_sleep to use EV_TIMEOUT + misc lua-threads
Thu, 21 May 2009 16:23:27 +0300 Tero Marttila fix console to ignore input while waiting, and rename have_input -> have_prompt lua-threads
Thu, 21 May 2009 16:23:08 +0300 Tero Marttila fix lua_console to use new lua_thread API lua-threads
Thu, 21 May 2009 16:22:57 +0300 Tero Marttila fix lua_thread to call lua_resume from outside TL state, and to never call the callback directly lua-threads
Wed, 20 May 2009 22:53:05 +0300 Tero Marttila implement lua_threads, nexus:sleep test func, and basic support in console/lua_console... doesn't actually work yet lua-threads
Wed, 20 May 2009 22:52:01 +0300 Tero Marttila slight tweaks to nexus_lua, use error_t and no need to pop the loaded chunk ourselv - lua_pcall will always do that
Wed, 20 May 2009 22:49:03 +0300 Tero Marttila implement LUA_ARG_INT
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, 14 May 2009 22:57:13 +0300 Tero Marttila replace lua_client_networks/lua_network_channels with iterators
Thu, 14 May 2009 21:45:43 +0300 Tero Marttila implement lua_client_networks and lua_network_channels
Thu, 14 May 2009 21:45:28 +0300 Tero Marttila use irc_conn_self in irc_chan
Sun, 10 May 2009 23:37:43 +0300 Tero Marttila implement msg_proto and associated test, fix misc. other bugs (including changing error_info::code to a signed int\!)
Fri, 08 May 2009 02:51:20 +0300 Tero Marttila rework test to implement flags, test_results, test_stats, TEST_WILL_FAIL
Fri, 08 May 2009 01:43:02 +0300 Tero Marttila add a new test/fail module, and rewrite test/assert to use it
Fri, 08 May 2009 01:42:44 +0300 Tero Marttila update valgrind-suppressions for new malloc leaks within backtrace()
Fri, 08 May 2009 00:26:13 +0300 Tero Marttila add missing resolve_result_deinit to tcp_server_listen
Fri, 08 May 2009 00:25:54 +0300 Tero Marttila add support for valgrind to test, and update old suppressions file
Fri, 08 May 2009 00:13:38 +0300 Tero Marttila add tests for irc_cmd/irc_line, and fix handling of missing-prefix to set source to NULL in irc_line
Fri, 08 May 2009 00:12:52 +0300 Tero Marttila add a test/backtrace module and have ASSERT_FAIL dump out a backtrace, also, fix assert_str[n]cmp to handle should_be == NULL
Fri, 08 May 2009 00:12:15 +0300 Tero Marttila add a run_test to test.c to improve the log_info output
Fri, 08 May 2009 00:11:35 +0300 Tero Marttila fix CMake TEST_OBJECT_PATH, ENABLE_TEST_COVERAGE test-target and cleanup of .gcda's
Thu, 07 May 2009 22:23:51 +0300 Tero Marttila rework CMake scripts, particularly re make: Nothing to be done for `test'., integrate lcov now
Thu, 07 May 2009 18:48:38 +0300 Tero Marttila add a crude test_tcp, fix some tcp_server bugs, add missing service_destroy function
Thu, 07 May 2009 18:11:50 +0300 Tero Marttila test/resolve.c, and fix AI_* -> NI_* bug in call to getnameinfo
Thu, 07 May 2009 02:57:11 +0300 Tero Marttila slight tweaks to ssl_client's handshake-done logic
Thu, 07 May 2009 02:49:49 +0300 Tero Marttila fix transport_fd to have the right parent, and fix transport_test
Thu, 07 May 2009 02:49:10 +0300 Tero Marttila add missing ssl.c
Thu, 07 May 2009 02:46:44 +0300 Tero Marttila rename sock_ssl/sock_gnutls -> ssl/ssl_client
Thu, 07 May 2009 02:17:55 +0300 Tero Marttila update CMakeLists (excludes old sock_gnutls)
Thu, 07 May 2009 02:17:29 +0300 Tero Marttila implement tcp_server, along with new error codes
Thu, 07 May 2009 02:17:20 +0300 Tero Marttila rename sock_tcp to tcp_{transport,client}, fix irc_net_connect to use log_err/tcp_connect
Thu, 07 May 2009 02:13:50 +0300 Tero Marttila modify transport to use the new object_* stuff, along with transport_fd and fifo
Thu, 07 May 2009 02:12:55 +0300 Tero Marttila implement a new 'service' interface that's similar to the transport interface
Thu, 07 May 2009 02:12:31 +0300 Tero Marttila implement a generic object/object-type thing
Thu, 07 May 2009 02:12:06 +0300 Tero Marttila implement a separate resolver module
Thu, 07 May 2009 02:11:41 +0300 Tero Marttila fix log_warn_*/log_err/log_error naming
Tue, 05 May 2009 03:15:25 +0300 Tero Marttila evil chain.h macro magic, fix irc_conn_set_nickname bug, misc. test bugs (mem leaks, missing #includes)
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
Mon, 04 May 2009 20:55:43 +0300 Tero Marttila merge new-transport@a58ad50911fc
Mon, 04 May 2009 20:55:04 +0300 Tero Marttila refactor test.c into tests/* new-transport
Sun, 03 May 2009 17:19:36 +0300 Tero Marttila update test.c to reflect new transport stuff new-transport
Sun, 03 May 2009 17:19:05 +0300 Tero Marttila replace old sock_test with new transport_test new-transport
Sun, 03 May 2009 17:18:16 +0300 Tero Marttila fix doc things new-transport
Sun, 03 May 2009 17:16:30 +0300 Tero Marttila remove ERR_READ_EOF, add more general errors, add missing _general_error_desc, and have error_name return for SUCCESS new-transport
Sun, 03 May 2009 17:15:45 +0300 Tero Marttila fix old usage of ERR_READ_EOF with ERR_EOF, and sock_gnutls typos/cleanup new-transport
Sun, 03 May 2009 17:14:09 +0300 Tero Marttila replace exit(EXIT_FAILURE) with abort() in FATAL_* new-transport
Tue, 28 Apr 2009 23:11:06 +0300 Tero Marttila amend d3e253d7281a, also note that it fixed other bugs with transport_fd new-transport
Tue, 28 Apr 2009 23:10:38 +0300 Tero Marttila fix line_proto bugs new-transport
Tue, 28 Apr 2009 23:10:30 +0300 Tero Marttila implement heirarchial type-checking for transport_check new-transport
Tue, 28 Apr 2009 23:09:28 +0300 Tero Marttila don't assert on CONFIG_INVALID in config_parse_param new-transport
Tue, 28 Apr 2009 22:36:36 +0300 Tero Marttila fixed fifo new-transport
Tue, 28 Apr 2009 22:08:59 +0300 Tero Marttila add transport/sock/line_proto/etc code compiles new-transport