This patch is a port of commit 4b885b9b24de9e188c861422d7d2738b49359d22.

It fixes ecore_con_server_timeout_set().
This commit is contained in:
Guillaume Friloux 2013-07-17 16:20:45 +02:00
parent 2b344688f9
commit 6aab5a9690
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-07-17 Guillaume Friloux
* Fix ecore_con_server_timeout_set(). It was changing the
timeout value, but not the timer.
2013-07-17 Mike Blumenkrantz
* Ecore-X: add error messages for xlib, ECORE_X_ATOM_XDND_DIRECTSAVE0

1
NEWS
View File

@ -331,6 +331,7 @@ Fixes:
ecore_con_client_uptime_get() is working.
- Fix srv->start_time (initialization missing). So now
ecore_con_server_uptime_get() is working for plain TCP connections.
- Fix ecore_con_server_timeout_set(). It will now reset the timer.
* Ecore_Evas:
- Fix build of Ecore_Evas_Extn on Solaris.
- Fix many memory problems with ecore_evas_extn.

View File

@ -555,6 +555,8 @@ ecore_con_server_timeout_set(Ecore_Con_Server *svr,
svr->client_disconnect_time = timeout;
else
svr->disconnect_time = timeout;
_ecore_con_server_timer_update(svr);
}
EAPI double