1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* startserver.c --- open a connection to the CVS server under Windows NT
Jim Blandy <jimb@cyclic.com> --- August 1995 */
#include "cvs.h"
#include "rcmd.h"
#include <stdlib.h>
#include <winsock.h>
#include <malloc.h>
#include <io.h>
#include <errno.h>
/* Keep track of whether we've opened a socket so that wnt_shutdown_server
can do the correct thing. We don't want to call shutdown or
closesocket on a pipe. */
static int opened_a_socket = 0;
void
wnt_start_server (int *tofd, int *fromfd,
char *client_user,
char *server_user,
char *server_host,
char *server_cvsroot)
{
char *cvs_server;
char *command;
struct servent *sptr;
unsigned short port;
int read_fd;
char *portenv;
if (! (cvs_server = getenv ("CVS_SERVER")))
cvs_server = "cvs";
command = xmalloc (strlen (cvs_server)
+ strlen (server_cvsroot)
+ 50);
sprintf (command, "%s -d %s server", cvs_server, server_cvsroot);
portenv = getenv("CVS_RCMD_PORT");
if (portenv)
port = atoi(portenv);
else if ((sptr = getservbyname("shell", "tcp")) != NULL)
port = sptr->s_port;
else
port = IPPORT_CMDSERVER; /* shell/tcp */
read_fd = rcmd (&server_host,
port,
client_user,
(server_user ? server_user : client_user),
command,
0);
if (read_fd < 0)
error (1, 0, "cannot start server via rcmd: %s",
SOCK_STRERROR (SOCK_ERRNO));
*tofd = read_fd;
*fromfd = read_fd;
free (command);
opened_a_socket = 1;
}
void
wnt_shutdown_server (int fd)
{
if (opened_a_socket)
{
SOCKET s;
s = fd;
if (shutdown (s, 2) == SOCKET_ERROR)
error (1, 0, "couldn't shutdown server connection: %s",
SOCK_STRERROR (SOCK_ERRNO));
if (closesocket (s) == SOCKET_ERROR)
error (1, 0, "couldn't close server connection: %s",
SOCK_STRERROR (SOCK_ERRNO));
}
else
{
if (close (fd) < 0)
error (1, errno, "cannot close server connection");
}
}
|