]> code.citadel.org Git - citadel.git/blobdiff - citadel/sendcommand.c
* Variable names, comments, documentation, etc... removed the acronym 'BBS'
[citadel.git] / citadel / sendcommand.c
index 222f339e9959009228d11000b85a3110bc625ad9..da37dd71c3ddd33fc443adc01bb60ed0cf136ffb 100644 (file)
@@ -114,6 +114,10 @@ void np_attach_to_server(void)
        strcpy(portbuf, ".");   /* IPGM will refuse to run on the network */
        fprintf(stderr, "Attaching to server...\n");
        ipc = CtdlIPC_new(1, args, hostbuf, portbuf);
+       if (!ipc) {
+               fprintf(stderr, "Can't connect: %s\n", strerror(errno));
+               exit(3);
+       }
        CtdlIPC_chat_recv(ipc, buf);
        fprintf(stderr, "%s\n", &buf[4]);
        snprintf(buf, sizeof buf, "IPGM %d", config.c_ipgm_secret);
@@ -125,6 +129,10 @@ void np_attach_to_server(void)
 }
 
 
+void sendcommand_die(void) {
+       exit(0);
+}
+
 
 /*
  * main
@@ -135,7 +143,7 @@ int main(int argc, char **argv)
        char cmd[SIZ];
        char buf[SIZ];
 
-       strcpy(bbs_home_directory, BBSDIR);
+       strcpy(ctdl_home_directory, CTDLDIR);
 
        strcpy(cmd, "");
        /*
@@ -143,8 +151,8 @@ int main(int argc, char **argv)
         */
        for (a = 1; a < argc; ++a) {
                if (!strncmp(argv[a], "-h", 2)) {
-                       strcpy(bbs_home_directory, argv[a]);
-                       strcpy(bbs_home_directory, &bbs_home_directory[2]);
+                       strcpy(ctdl_home_directory, argv[a]);
+                       strcpy(ctdl_home_directory, &ctdl_home_directory[2]);
                        home_specified = 1;
                } else {
                        if (strlen(cmd) > 0)
@@ -163,10 +171,11 @@ int main(int argc, char **argv)
        fprintf(stderr, "sendcommand: started (pid=%d) "
                        "running in %s\n",
                        (int) getpid(),
-                       bbs_home_directory);
+                       ctdl_home_directory);
        fflush(stderr);
        np_attach_to_server();
        fflush(stderr);
+       setIPCDeathHook(sendcommand_die);
 
        fprintf(stderr, "%s\n", cmd);
        CtdlIPC_chat_send(ipc, cmd);