KCM: restore support for Solaris doors IPC mechanism (#379)

This patch restores support for the Solaris doors IPC mechanism, removed
from KCM when lib/ipc was added.
This commit is contained in:
Luke Howard
2018-05-11 20:17:56 +10:00
parent fef64ade9f
commit 73fde33757
11 changed files with 234 additions and 41 deletions

View File

@@ -97,6 +97,12 @@ main(int argc, char **argv)
heim_sipc un;
heim_sipc_service_unix(service_name, kcm_service, NULL, &un);
}
#ifdef HAVE_DOOR_CREATE
{
heim_sipc door;
heim_sipc_service_door(service_name, kcm_service, NULL, &door);
}
#endif
roken_detach_finish(NULL, daemon_child);