(print_help_and_exit): Tweak message contents and tabs/spaces
[emacs.git] / lib-src / emacsclient.c
blob4bb9af66359735b48a90e897b186b440a963a397
1 /* Client process that communicates with GNU Emacs acting as server.
2 Copyright (C) 1986, 1987, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
23 #define NO_SHORTNAMES
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
29 #ifdef WINDOWSNT
31 /* config.h defines these, which disables sockets altogether! */
32 # undef _WINSOCKAPI_
33 # undef _WINSOCK_H
35 # include <malloc.h>
36 # include <stdlib.h>
37 # include <windows.h>
39 # define NO_SOCKETS_IN_FILE_SYSTEM
41 # define HSOCKET SOCKET
42 # define CLOSE_SOCKET closesocket
43 # define INITIALIZE() (initialize_sockets ())
45 #else /* !WINDOWSNT */
47 # include <sys/types.h>
49 # ifdef HAVE_INET_SOCKETS
50 # include <netinet/in.h>
51 # endif
53 # define INVALID_SOCKET -1
54 # define HSOCKET int
55 # define CLOSE_SOCKET close
56 # define INITIALIZE()
58 #endif /* !WINDOWSNT */
60 #undef signal
62 #include <stdarg.h>
63 #include <ctype.h>
64 #include <stdio.h>
65 #include "getopt.h"
66 #ifdef HAVE_UNISTD_H
67 #include <unistd.h>
68 #endif
70 #ifdef VMS
71 # include "vms-pwd.h"
72 #else /* not VMS */
73 #ifdef WINDOWSNT
74 # include <io.h>
75 #else /* not WINDOWSNT */
76 # include <pwd.h>
77 #endif /* not WINDOWSNT */
78 #endif /* not VMS */
80 char *getenv (), *getwd ();
81 char *(getcwd) ();
83 #ifndef VERSION
84 #define VERSION "unspecified"
85 #endif
87 #define SEND_STRING(data) (send_to_emacs (s, (data)))
88 #define SEND_QUOTED(data) (quote_file_name (s, (data)))
90 #ifndef EXIT_SUCCESS
91 #define EXIT_SUCCESS 0
92 #endif
94 #ifndef EXIT_FAILURE
95 #define EXIT_FAILURE 1
96 #endif
98 #ifndef FALSE
99 #define FALSE 0
100 #endif
102 #ifndef TRUE
103 #define TRUE 1
104 #endif
106 #ifndef NO_RETURN
107 #define NO_RETURN
108 #endif
110 /* Name used to invoke this program. */
111 char *progname;
113 /* Nonzero means don't wait for a response from Emacs. --no-wait. */
114 int nowait = 0;
116 /* Nonzero means args are expressions to be evaluated. --eval. */
117 int eval = 0;
119 /* The display on which Emacs should work. --display. */
120 char *display = NULL;
122 /* If non-NULL, the name of an editor to fallback to if the server
123 is not running. --alternate-editor. */
124 const char *alternate_editor = NULL;
126 /* If non-NULL, the filename of the UNIX socket. */
127 char *socket_name = NULL;
129 /* If non-NULL, the filename of the authentication file. */
130 char *server_file = NULL;
132 void print_help_and_exit () NO_RETURN;
134 struct option longopts[] =
136 { "no-wait", no_argument, NULL, 'n' },
137 { "eval", no_argument, NULL, 'e' },
138 { "help", no_argument, NULL, 'H' },
139 { "version", no_argument, NULL, 'V' },
140 { "alternate-editor", required_argument, NULL, 'a' },
141 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
142 { "socket-name", required_argument, NULL, 's' },
143 #endif
144 { "server-file", required_argument, NULL, 'f' },
145 { "display", required_argument, NULL, 'd' },
146 { 0, 0, 0, 0 }
149 /* Message functions. */
151 #ifdef WINDOWSNT
152 /* I first tried to check for STDOUT. The check did not work,
153 I get a valid handle also in nonconsole apps.
154 Instead I test for console title, which seems to work. */
156 w32_window_app()
158 static int window_app = -1;
159 char szTitle[MAX_PATH];
161 if (window_app < 0)
162 window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0);
164 return window_app;
166 #endif
168 void
169 message (int is_error, char *message, ...)
171 char buf [2048];
172 char *msg = buf;
173 va_list args;
175 va_start (args, message);
177 if (is_error)
179 sprintf (buf, "%s: ", progname);
180 msg = strchr (buf, '\0');
183 vsprintf (msg, message, args);
184 va_end (args);
186 #ifdef WINDOWSNT
187 if (w32_window_app ())
189 if (is_error)
190 MessageBox (NULL, msg, "Emacsclient ERROR", MB_ICONERROR);
191 else
192 MessageBox (NULL, msg, "Emacsclient", MB_ICONINFORMATION);
194 else
195 #endif
196 fprintf (is_error ? stderr : stdout, msg);
199 /* Decode the options from argv and argc.
200 The global variable `optind' will say how many arguments we used up. */
202 void
203 decode_options (argc, argv)
204 int argc;
205 char **argv;
207 alternate_editor = getenv ("ALTERNATE_EDITOR");
209 while (1)
211 int opt = getopt_long (argc, argv,
212 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
213 "VHnea:s:f:d:",
214 #else
215 "VHnea:f:d:",
216 #endif
217 longopts, 0);
219 if (opt == EOF)
220 break;
222 switch (opt)
224 case 0:
225 /* If getopt returns 0, then it has already processed a
226 long-named option. We should do nothing. */
227 break;
229 case 'a':
230 alternate_editor = optarg;
231 break;
233 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
234 case 's':
235 socket_name = optarg;
236 break;
237 #endif
239 case 'f':
240 server_file = optarg;
241 break;
243 case 'd':
244 display = optarg;
245 break;
247 case 'n':
248 nowait = 1;
249 break;
251 case 'e':
252 eval = 1;
253 break;
255 case 'V':
256 message (FALSE, "emacsclient %s\n", VERSION);
257 exit (EXIT_SUCCESS);
258 break;
260 case 'H':
261 print_help_and_exit ();
262 break;
264 default:
265 message (TRUE, "Try `%s --help' for more information\n", progname);
266 exit (EXIT_FAILURE);
267 break;
272 void
273 print_help_and_exit ()
275 message (FALSE,
276 "Usage: %s [OPTIONS] FILE...\n\
277 Tell the Emacs server to visit the specified files.\n\
278 Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
280 The following OPTIONS are accepted:\n\
282 -V, --version Just print version info and return\n\
283 -H, --help Print this usage information message\n\
284 -e, --eval Evaluate FILE arguments as Lisp expressions\n\
285 -n, --no-wait Don't wait for the server to return\n\
286 -d, --display=DISPLAY Visit the file in the given display\n"
287 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
288 "-s, --socket-name=FILENAME\n\
289 Set filename of the UNIX socket for communication\n"
290 #endif
291 "-f, --server-file=FILENAME\n\
292 Set filename of the TCP authentication file\n\
293 -a, --alternate-editor=EDITOR\n\
294 Editor to fallback to if server is not running\n\
296 Report bugs to bug-gnu-emacs@gnu.org.\n", progname);
297 exit (EXIT_SUCCESS);
302 Try to run a different command, or --if no alternate editor is
303 defined-- exit with an errorcode.
305 void
306 fail (argc, argv)
307 int argc;
308 char **argv;
310 if (alternate_editor)
312 int i = optind - 1;
313 #ifdef WINDOWSNT
314 argv[i] = (char *)alternate_editor;
315 #endif
316 execvp (alternate_editor, argv + i);
317 message (TRUE, "%s: error executing alternate editor \"%s\"\n",
318 progname, alternate_editor);
320 exit (EXIT_FAILURE);
324 #if !defined (HAVE_SOCKETS) || !defined (HAVE_INET_SOCKETS)
327 main (argc, argv)
328 int argc;
329 char **argv;
331 message (TRUE, "%s: Sorry, the Emacs server is supported only\non systems with Berkely sockets.\n",
332 argv[0]);
334 fail (argc, argv);
337 #else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
339 #ifdef WINDOWSNT
340 # include <winsock2.h>
341 #else
342 # include <sys/types.h>
343 # include <sys/socket.h>
344 # include <sys/un.h>
345 # include <sys/stat.h>
346 # include <errno.h>
347 #endif
349 #define AUTH_KEY_LENGTH 64
350 #define SEND_BUFFER_SIZE 4096
352 extern char *strerror ();
353 extern int errno;
355 /* Buffer to accumulate data to send in TCP connections. */
356 char send_buffer[SEND_BUFFER_SIZE + 1];
357 int sblen = 0; /* Fill pointer for the send buffer. */
359 /* Let's send the data to Emacs when either
360 - the data ends in "\n", or
361 - the buffer is full (but this shouldn't happen)
362 Otherwise, we just accumulate it. */
363 void
364 send_to_emacs (s, data)
365 HSOCKET s;
366 char *data;
368 while (data)
370 int dlen = strlen (data);
371 if (dlen + sblen >= SEND_BUFFER_SIZE)
373 int part = SEND_BUFFER_SIZE - sblen;
374 strncpy (&send_buffer[sblen], data, part);
375 data += part;
376 sblen = SEND_BUFFER_SIZE;
378 else if (dlen)
380 strcpy (&send_buffer[sblen], data);
381 data = NULL;
382 sblen += dlen;
384 else
385 break;
387 if (sblen == SEND_BUFFER_SIZE
388 || (sblen > 0 && send_buffer[sblen-1] == '\n'))
390 int sent = send (s, send_buffer, sblen, 0);
391 if (sent != sblen)
392 strcpy (send_buffer, &send_buffer[sent]);
393 sblen -= sent;
398 /* In NAME, insert a & before each &, each space, each newline, and
399 any initial -. Change spaces to underscores, too, so that the
400 return value never contains a space. */
401 void
402 quote_file_name (s, name)
403 HSOCKET s;
404 char *name;
406 char *copy = (char *) malloc (strlen (name) * 2 + 1);
407 char *p, *q;
409 p = name;
410 q = copy;
411 while (*p)
413 if (*p == ' ')
415 *q++ = '&';
416 *q++ = '_';
417 p++;
419 else if (*p == '\n')
421 *q++ = '&';
422 *q++ = 'n';
423 p++;
425 else
427 if (*p == '&' || (*p == '-' && p == name))
428 *q++ = '&';
429 *q++ = *p++;
432 *q++ = 0;
434 SEND_STRING (copy);
436 free (copy);
440 file_name_absolute_p (filename)
441 const unsigned char *filename;
443 /* Sanity check, it shouldn't happen. */
444 if (! filename) return FALSE;
446 /* /xxx is always an absolute path. */
447 if (filename[0] == '/') return TRUE;
449 /* Empty filenames (which shouldn't happen) are relative. */
450 if (filename[0] == '\0') return FALSE;
452 #ifdef WINDOWSNT
453 /* X:\xxx is always absolute; X:xxx is an error and will fail. */
454 if (islower (tolower (filename[0]))
455 && filename[1] == ':' && filename[2] == '\\')
456 return TRUE;
458 /* Both \xxx and \\xxx\yyy are absolute. */
459 if (filename[0] == '\\') return TRUE;
460 #endif
462 return FALSE;
465 #ifdef WINDOWSNT
466 /* Wrapper to make WSACleanup a cdecl, as required by atexit(). */
467 void
468 __cdecl close_winsock ()
470 WSACleanup ();
473 /* Initialize the WinSock2 library. */
474 void
475 initialize_sockets ()
477 WSADATA wsaData;
479 if (WSAStartup (MAKEWORD (2, 0), &wsaData))
481 message (TRUE, "%s: error initializing WinSock2", progname);
482 exit (EXIT_FAILURE);
485 atexit (close_winsock);
487 #endif /* WINDOWSNT */
490 * Read the information needed to set up a TCP comm channel with
491 * the Emacs server: host, port, pid and authentication string.
494 get_server_config (server, authentication)
495 struct sockaddr_in *server;
496 char *authentication;
498 char dotted[32];
499 char *port;
500 char *pid;
501 FILE *config = NULL;
503 if (file_name_absolute_p (server_file))
504 config = fopen (server_file, "rb");
505 else
507 char *home = getenv ("HOME");
509 if (home)
511 char *path = alloca (32 + strlen (home) + strlen (server_file));
512 sprintf (path, "%s/.emacs.d/server/%s", home, server_file);
513 config = fopen (path, "rb");
515 #ifdef WINDOWSNT
516 if (!config && (home = getenv ("APPDATA")))
518 char *path = alloca (32 + strlen (home) + strlen (server_file));
519 sprintf (path, "%s/.emacs.d/server/%s", home, server_file);
520 config = fopen (path, "rb");
522 #endif
525 if (! config)
526 return FALSE;
528 if (fgets (dotted, sizeof dotted, config)
529 && (port = strchr (dotted, ':'))
530 && (pid = strchr (port, ' ')))
532 *port++ = '\0';
533 *pid++ = '\0';
535 else
537 message (TRUE, "%s: invalid configuration info", progname);
538 exit (EXIT_FAILURE);
541 server->sin_family = AF_INET;
542 server->sin_addr.s_addr = inet_addr (dotted);
543 server->sin_port = htons (atoi (port));
545 if (! fread (authentication, AUTH_KEY_LENGTH, 1, config))
547 message (TRUE, "%s: cannot read authentication info", progname);
548 exit (EXIT_FAILURE);
551 fclose (config);
553 #ifdef WINDOWSNT
555 Modern Windows restrict which processes can set the foreground window.
556 So, for emacsclient to be able to force Emacs into the foreground, we
557 have to call AllowSetForegroundWindow(). Unfortunately, older Windows
558 (W95, W98 and NT) don't have this function, so we have to check first.
560 We're doing this here because it has to be done before sending info
561 to Emacs, and otherwise we'll need a global variable just to pass around
562 the pid, which is also inelegant.
565 HMODULE hUser32;
567 if (hUser32 = LoadLibrary ("user32.dll"))
569 FARPROC set_fg;
570 if (set_fg = GetProcAddress (hUser32, "AllowSetForegroundWindow"))
571 set_fg (atoi (pid));
572 FreeLibrary (hUser32);
575 #endif
577 return TRUE;
580 HSOCKET
581 set_tcp_socket ()
583 HSOCKET s;
584 struct sockaddr_in server;
585 struct linger l_arg = {1, 1};
586 char auth_string[AUTH_KEY_LENGTH + 1];
588 if (! get_server_config (&server, auth_string))
589 return INVALID_SOCKET;
591 if (server.sin_addr.s_addr != inet_addr ("127.0.0.1"))
592 message (TRUE, "%s: connected to remote socket at %s\n",
593 progname, inet_ntoa (server.sin_addr));
596 * Open up an AF_INET socket
598 if ((s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
600 message (TRUE, "%s: socket: %s\n", progname, strerror (errno));
601 return INVALID_SOCKET;
605 * Set up the socket
607 if (connect (s, (struct sockaddr *) &server, sizeof server) < 0)
609 message (TRUE, "%s: connect: %s\n", progname, strerror (errno));
610 return INVALID_SOCKET;
613 setsockopt (s, SOL_SOCKET, SO_LINGER, (char *) &l_arg, sizeof l_arg);
616 * Send the authentication
618 auth_string[AUTH_KEY_LENGTH] = '\0';
620 SEND_STRING ("-auth ");
621 SEND_STRING (auth_string);
622 SEND_STRING ("\n");
624 return s;
627 #if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
629 /* Three possibilities:
630 2 - can't be `stat'ed (sets errno)
631 1 - isn't owned by us
632 0 - success: none of the above */
634 static int
635 socket_status (socket_name)
636 char *socket_name;
638 struct stat statbfr;
640 if (stat (socket_name, &statbfr) == -1)
641 return 2;
643 if (statbfr.st_uid != geteuid ())
644 return 1;
646 return 0;
649 HSOCKET
650 set_local_socket ()
652 HSOCKET s;
653 struct sockaddr_un server;
656 * Open up an AF_UNIX socket in this person's home directory
659 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
661 message (TRUE, "%s: socket: %s\n", progname, strerror (errno));
662 return INVALID_SOCKET;
665 server.sun_family = AF_UNIX;
668 int sock_status = 0;
669 int default_sock = !socket_name;
670 int saved_errno;
671 char *server_name = "server";
673 if (socket_name && !index (socket_name, '/') && !index (socket_name, '\\'))
674 { /* socket_name is a file name component. */
675 server_name = socket_name;
676 socket_name = NULL;
677 default_sock = 1; /* Try both UIDs. */
680 if (default_sock)
682 socket_name = alloca (100 + strlen (server_name));
683 sprintf (socket_name, "/tmp/emacs%d/%s",
684 (int) geteuid (), server_name);
687 if (strlen (socket_name) < sizeof (server.sun_path))
688 strcpy (server.sun_path, socket_name);
689 else
691 message (TRUE, "%s: socket-name %s too long",
692 progname, socket_name);
693 exit (EXIT_FAILURE);
696 /* See if the socket exists, and if it's owned by us. */
697 sock_status = socket_status (server.sun_path);
698 saved_errno = errno;
699 if (sock_status && default_sock)
701 /* Failing that, see if LOGNAME or USER exist and differ from
702 our euid. If so, look for a socket based on the UID
703 associated with the name. This is reminiscent of the logic
704 that init_editfns uses to set the global Vuser_full_name. */
706 char *user_name = (char *) getenv ("LOGNAME");
708 if (!user_name)
709 user_name = (char *) getenv ("USER");
711 if (user_name)
713 struct passwd *pw = getpwnam (user_name);
715 if (pw && (pw->pw_uid != geteuid ()))
717 /* We're running under su, apparently. */
718 socket_name = alloca (100 + strlen (server_name));
719 sprintf (socket_name, "/tmp/emacs%d/%s",
720 (int) pw->pw_uid, server_name);
722 if (strlen (socket_name) < sizeof (server.sun_path))
723 strcpy (server.sun_path, socket_name);
724 else
726 message (TRUE, "%s: socket-name %s too long",
727 progname, socket_name);
728 exit (EXIT_FAILURE);
731 sock_status = socket_status (server.sun_path);
732 saved_errno = errno;
734 else
735 errno = saved_errno;
739 switch (sock_status)
741 case 1:
742 /* There's a socket, but it isn't owned by us. This is OK if
743 we are root. */
744 if (0 != geteuid ())
746 message (TRUE, "%s: Invalid socket owner\n", progname);
747 return INVALID_SOCKET;
749 break;
751 case 2:
752 /* `stat' failed */
753 if (saved_errno == ENOENT)
754 message (TRUE,
755 "%s: can't find socket; have you started the server?\n\
756 To start the server in Emacs, type \"M-x server-start\".\n",
757 progname);
758 else
759 message (TRUE, "%s: can't stat %s: %s\n",
760 progname, server.sun_path, strerror (saved_errno));
761 return INVALID_SOCKET;
765 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2)
766 < 0)
768 message (TRUE, "%s: connect: %s\n", progname, strerror (errno));
769 return INVALID_SOCKET;
772 return s;
774 #endif /* ! NO_SOCKETS_IN_FILE_SYSTEM */
776 HSOCKET
777 set_socket ()
779 HSOCKET s;
781 INITIALIZE ();
783 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
784 /* Explicit --socket-name argument. */
785 if (socket_name)
787 s = set_local_socket ();
788 if ((s != INVALID_SOCKET) || alternate_editor)
789 return s;
791 message (TRUE, "%s: error accessing socket \"%s\"",
792 progname, socket_name);
793 exit (EXIT_FAILURE);
795 #endif
797 /* Explicit --server-file arg or EMACS_SERVER_FILE variable. */
798 if (!server_file)
799 server_file = getenv ("EMACS_SERVER_FILE");
801 if (server_file)
803 s = set_tcp_socket ();
804 if ((s != INVALID_SOCKET) || alternate_editor)
805 return s;
807 message (TRUE, "%s: error accessing server file \"%s\"",
808 progname, server_file);
809 exit (EXIT_FAILURE);
812 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
813 /* Implicit local socket. */
814 s = set_local_socket ();
815 if (s != INVALID_SOCKET)
816 return s;
817 #endif
819 /* Implicit server file. */
820 server_file = "server";
821 s = set_tcp_socket ();
822 if ((s != INVALID_SOCKET) || alternate_editor)
823 return s;
825 /* No implicit or explicit socket, and no alternate editor. */
826 message (TRUE, "%s: No socket or alternate editor. Please use:\n\n"
827 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
828 "\t--socket-name\n"
829 #endif
830 "\t--server-file (or environment variable EMACS_SERVER_FILE)\n\
831 \t--alternate-editor (or environment variable ALTERNATE_EDITOR)\n",
832 progname);
833 exit (EXIT_FAILURE);
837 main (argc, argv)
838 int argc;
839 char **argv;
841 HSOCKET s;
842 int i, rl, needlf = 0;
843 char *cwd;
844 char string[BUFSIZ+1];
846 progname = argv[0];
848 /* Process options. */
849 decode_options (argc, argv);
851 if ((argc - optind < 1) && !eval)
853 message (TRUE, "%s: file name or argument required\nTry `%s --help' for more information\n",
854 progname, progname);
855 exit (EXIT_FAILURE);
858 if ((s = set_socket ()) == INVALID_SOCKET)
859 fail (argc, argv);
861 #ifdef HAVE_GETCWD
862 cwd = getcwd (string, sizeof string);
863 #else
864 cwd = getwd (string);
865 #endif
866 if (cwd == 0)
868 /* getwd puts message in STRING if it fails. */
869 #ifdef HAVE_GETCWD
870 message (TRUE, "%s: %s (%s)\n", progname,
871 "Cannot get current working directory", strerror (errno));
872 #else
873 message (TRUE, "%s: %s (%s)\n", progname, string, strerror (errno));
874 #endif
875 fail (argc, argv);
878 if (nowait)
879 SEND_STRING ("-nowait ");
881 if (eval)
882 SEND_STRING ("-eval ");
884 if (display)
886 SEND_STRING ("-display ");
887 SEND_QUOTED (display);
888 SEND_STRING (" ");
891 if ((argc - optind > 0))
893 for (i = optind; i < argc; i++)
895 if (eval)
896 ; /* Don't prepend any cwd or anything like that. */
897 else if (*argv[i] == '+')
899 char *p = argv[i] + 1;
900 while (isdigit ((unsigned char) *p) || *p == ':') p++;
901 if (*p != 0)
903 SEND_QUOTED (cwd);
904 SEND_STRING ("/");
907 else if (! file_name_absolute_p (argv[i]))
909 SEND_QUOTED (cwd);
910 SEND_STRING ("/");
913 SEND_QUOTED (argv[i]);
914 SEND_STRING (" ");
917 else
919 while (fgets (string, BUFSIZ, stdin))
921 SEND_QUOTED (string);
923 SEND_STRING (" ");
926 SEND_STRING ("\n");
928 /* Maybe wait for an answer. */
929 if (!nowait)
931 if (!eval)
933 printf ("Waiting for Emacs...");
934 needlf = 2;
936 fflush (stdout);
938 /* Now, wait for an answer and print any messages. */
939 while ((rl = recv (s, string, BUFSIZ, 0)) > 0)
941 string[rl] = '\0';
942 if (needlf == 2)
943 printf ("\n");
944 printf ("%s", string);
945 needlf = string[0] == '\0' ? needlf : string[strlen (string) - 1] != '\n';
948 if (needlf)
949 printf ("\n");
950 fflush (stdout);
953 CLOSE_SOCKET (s);
954 return EXIT_SUCCESS;
957 #endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
959 #ifndef HAVE_STRERROR
960 char *
961 strerror (errnum)
962 int errnum;
964 extern char *sys_errlist[];
965 extern int sys_nerr;
967 if (errnum >= 0 && errnum < sys_nerr)
968 return sys_errlist[errnum];
969 return (char *) "Unknown error";
972 #endif /* ! HAVE_STRERROR */
974 /* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
975 (do not change this comment) */
977 /* emacsclient.c ends here */