diff MIGRATING.md @ 733:bd12709b1975

Irccd: rework server to be simpler Server no longer has signals, now user is responsible of calling connect(), recv() and pass a completion handler. The recv function will complete with a std::variant of all possible events. The server does not manage itself anymore, the reconnection system has been moved to server_service instead. To simplify reconnection, the limit has been removed now you can only enable indefinite reconnection or disable it at all. closes #893 closes #892
author David Demelier <markand@malikania.fr>
date Tue, 24 Jul 2018 21:30:00 +0200
parents 1b04ffb2b35e
children 317c66a131be
line wrap: on
line diff
--- a/MIGRATING.md	Thu Jul 19 12:54:00 2018 +0200
+++ b/MIGRATING.md	Tue Jul 24 21:30:00 2018 +0200
@@ -75,3 +75,11 @@
 #### Module System
 
   - The function `Irccd.System.name` has now well defined return value.
+
+### Irccd
+
+#### Configuration
+
+- The option `reconnect-tries` has been removed from `[server]` section, use
+  `auto-reconnect` boolean option instead.
+- The option `reconnect-timeout` has been renamed to `auto-reconnect-delay`.