ecore ipc/con: fix nasty ... they dont mutually exclude

by deleting the socket they wont mutually exclude at bind which means
eny new server just nides the pror one and you can get lots of copies
of the same server. this wasnt the case before. it shouldnt have been.
i think ther was an rm path for stale sockets when connecting failed
or something. anyway... this here was causing multilpe efreetd's and
all sorts of nastiness. this is the root cause. so... fix it.

@fix
This commit is contained in:
Carsten Haitzler 2017-11-26 14:01:14 +09:00
parent 01ec011f8e
commit 047141fc90
2 changed files with 0 additions and 2 deletions

View File

@ -1531,7 +1531,6 @@ _ecore_con_server_server_set(Ecore_Con_Server *svr, Eo *server)
#ifdef EFL_NET_SERVER_UNIX_CLASS
else if (efl_isa(inner_server, EFL_NET_SERVER_UNIX_CLASS))
{
efl_net_server_unix_unlink_before_bind_set(inner_server, EINA_TRUE);
efl_net_server_unix_leading_directories_create_set(inner_server, EINA_TRUE, (type == ECORE_CON_LOCAL_SYSTEM) ? 0755 : 0700);
}
#endif

View File

@ -495,7 +495,6 @@ ecore_ipc_server_add(Ecore_Ipc_Type type, const char *name, int port, const void
if (efl_isa(svr->server, EFL_NET_SERVER_UNIX_CLASS))
{
old_mask = umask(new_mask);
efl_net_server_unix_unlink_before_bind_set(svr->server, EINA_TRUE);
efl_net_server_unix_leading_directories_create_set(svr->server,
EINA_TRUE,
local_system ? 0755 : 0700);