]> git.pond.sub.org Git - empserver/blob - src/client/host.c
Portability fixes: don't declare library functions, include
[empserver] / src / client / host.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  host.c: make stream connection to empire
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1998
33  */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <sys/types.h>
38 #ifndef _WIN32
39 #include <arpa/inet.h>
40 #include <sys/socket.h>
41 #include <netinet/in.h>
42 #include <netdb.h>
43 #include <unistd.h>
44 #else
45 #include <winsock.h>
46 #endif
47 #include <ctype.h>
48 #include "misc.h"
49
50 int
51 hostaddr(name, addr)
52 s_char *name;
53 struct sockaddr_in *addr;
54 {
55     struct hostent *hp;
56
57     if (name == 0 || *name == 0)
58         return 0;
59     if (isdigit(*name)) {
60         addr->sin_addr.s_addr = inet_addr(name);
61     } else {
62         hp = gethostbyname(name);
63         if (hp == NULL) {
64             fprintf(stderr, "%s: No such host\n", name);
65             return 0;
66         }
67         memcpy(&addr->sin_addr, hp->h_addr, sizeof(addr->sin_addr));
68 #ifdef _WIN32
69         printf("Trying to connect to '%s'\n", inet_ntoa(addr->sin_addr));
70         fflush(stdout);
71 #endif
72     }
73     return 1;
74 }
75
76 int
77 hostport(name, addr)
78 s_char *name;
79 struct sockaddr_in *addr;
80 {
81     struct servent *sp;
82
83     if (name == 0 || *name == 0)
84         return 0;
85     if (isdigit(*name)) {
86 #ifndef _WIN32
87         addr->sin_port = htons(atoi(name));
88 #else
89         addr->sin_port = atoi(name);
90         addr->sin_port = htons(addr->sin_port);
91 #endif
92     } else {
93         sp = getservbyname(name, "tcp");
94         if (sp == NULL)
95             return 0;
96         addr->sin_port = sp->s_port;
97     }
98     return 1;
99 }
100
101 int
102 hostconnect(addr)
103 struct sockaddr_in *addr;
104 {
105     int s;
106
107     s = socket(AF_INET, SOCK_STREAM, 0);
108     if (s < 0) {
109 #ifdef _WIN32
110         errno = WSAGetLastError();
111 #endif
112         perror("socket");
113         return -1;
114     }
115     addr->sin_family = AF_INET;
116     if (connect(s, (struct sockaddr *)addr, sizeof(*addr)) < 0) {
117 #ifdef _WIN32
118         errno = WSAGetLastError();
119 #endif
120         perror("connect");
121 #ifdef _WIN32
122         printf("Check that your EMPIREHOST and EMPIREPORT are correct.\n");
123 #endif
124         (void)close(s);
125         return -1;
126     }
127     return s;
128 }