summaryrefslogtreecommitdiff
path: root/src/ivyd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyd.c')
-rw-r--r--src/ivyd.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ivyd.c b/src/ivyd.c
index 6dfc27a..f53d6a3 100644
--- a/src/ivyd.c
+++ b/src/ivyd.c
@@ -49,8 +49,8 @@ Usage (const char* progname)
}
-/*
- * Envoie un numero de port au super-serveur de la machine locale
+/*
+ * Procedure to register with the super-daemon
*/
int
SendPort (int key, int port)
@@ -262,13 +262,14 @@ main (int argc, char **argv)
if (fork ())
exit (0);
- /* determine port in bus address */
+ /* determine port in bus address */
busport = ExtractPort (bus);
/* create server port */
sock = InitSocket (busport);
- signal (SIGTERM, exit); /* pour flinguer le serveur */
+ /* this allows users to stop us cleanly */
+ signal (SIGTERM, exit);
/* Ivy initialization and main loop */