home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / windows-NT / startserver.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  94 lines

  1. /* startserver.c --- open a connection to the CVS server under Windows NT
  2.    Jim Blandy <jimb@cyclic.com> --- August 1995  */
  3.  
  4. #include "cvs.h"
  5. #include "rcmd.h"
  6.  
  7. #include <stdlib.h>
  8. #include <winsock.h>
  9. #include <malloc.h>
  10. #include <io.h>
  11. #include <errno.h>
  12.  
  13.  
  14. /* Apply the Winsock shutdown function to a CRT file descriptor.  */
  15. static void
  16. shutdown_fd (int fd, int how)
  17. {
  18.     SOCKET s;
  19.     
  20.     if ((s = _get_osfhandle (fd)) < 0)
  21.         error (1, errno, "couldn't get socket handle from file descriptor");
  22.     if (shutdown (s, how) == SOCKET_ERROR)
  23.         error (1, 0, "couldn't shut down socket half");
  24. }
  25.  
  26.  
  27. void
  28. wnt_start_server (int *tofd, int *fromfd,
  29.           char *client_user,
  30.           char *server_user,
  31.           char *server_host,
  32.           char *server_cvsroot)
  33. {
  34.     char *cvs_server;
  35.     char *command;
  36.     struct servent *sptr;
  37.     unsigned short port;
  38.     int read_fd, write_fd;
  39.     char *portenv;
  40.     
  41.     if (! (cvs_server = getenv ("CVS_SERVER")))
  42.         cvs_server = "cvs";
  43.     command = xmalloc (strlen (cvs_server)
  44.                + strlen (server_cvsroot)
  45.                + 50);
  46.     sprintf (command, "%s -d %s server", cvs_server, server_cvsroot);
  47.  
  48.     portenv = getenv("CVS_RCMD_PORT");
  49.     if (portenv)
  50.     port = atoi(portenv);
  51.     else if ((sptr = getservbyname("shell", "tcp")) != NULL)
  52.     port = sptr->s_port;
  53.     else
  54.     port = IPPORT_CMDSERVER; /* shell/tcp */
  55.  
  56.     read_fd = rcmd (&server_host,
  57.                     port,
  58.                     client_user,
  59.                 (server_user ? server_user : client_user),
  60.                 command,
  61.                 0);
  62.     if (read_fd < 0)
  63.     error (1, errno, "cannot start server via rcmd");
  64.     
  65.     /* Split the socket into a reading and a writing half.  */
  66.     if ((write_fd = dup (read_fd)) < 0)
  67.         error (1, errno, "duplicating server connection");
  68. #if 0
  69.     /* This ought to be legal, since I've duped it, but shutting
  70.        down the writing end of read_fd seems to terminate the
  71.        whole connection.  */
  72.     shutdown_fd (read_fd, 1);
  73.     shutdown_fd (write_fd, 0);
  74. #endif
  75.     
  76.     *tofd = write_fd;
  77.     *fromfd = read_fd;
  78.     free (command);
  79. }
  80.  
  81.  
  82. void
  83. wnt_shutdown_server (int fd)
  84. {
  85.     SOCKET s;
  86.     
  87.     if ((s = _get_osfhandle (fd)) < 0)
  88.         error (1, errno, "couldn't get handle of server connection");
  89.     if (shutdown (s, 2) == SOCKET_ERROR)
  90.         error (1, 0, "couldn't shutdown server connection");
  91.     if (closesocket (s) == SOCKET_ERROR)
  92.         error (1, 0, "couldn't close server connection");
  93. }
  94.