mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +00:00
more magic number nukage and add a couple comments
This commit is contained in:
parent
7c0d8f2345
commit
6f7b3fa0ef
1 changed files with 4 additions and 3 deletions
|
@ -195,7 +195,7 @@ QW_SendHearts (int sock, struct sockaddr_in *addr, server_t *servers,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
cpos = 1;
|
cpos = 1;
|
||||||
out[0] = out[1] = out[2] = out[3] = 0xff;
|
out[0] = out[1] = out[2] = out[3] = 0xff; // connectionless packet
|
||||||
out[4] = M2C_MASTER_REPLY;
|
out[4] = M2C_MASTER_REPLY;
|
||||||
out[5] = '\n';
|
out[5] = '\n';
|
||||||
|
|
||||||
|
@ -219,6 +219,7 @@ QW_SendHearts (int sock, struct sockaddr_in *addr, server_t *servers,
|
||||||
void
|
void
|
||||||
QW_Pong (int sock, struct sockaddr_in *addr)
|
QW_Pong (int sock, struct sockaddr_in *addr)
|
||||||
{
|
{
|
||||||
|
// connectionless pa cket
|
||||||
char data[6] = {0xFF, 0xFF, 0xFF, 0xFF, A2A_ACK, 0};
|
char data[6] = {0xFF, 0xFF, 0xFF, 0xFF, A2A_ACK, 0};
|
||||||
printf ("Ping\n");
|
printf ("Ping\n");
|
||||||
sendto (sock, data, sizeof (data), 0,
|
sendto (sock, data, sizeof (data), 0,
|
||||||
|
@ -360,7 +361,7 @@ read_hosts (const char *fname)
|
||||||
if (*buf)
|
if (*buf)
|
||||||
host_port = atoi (buf);
|
host_port = atoi (buf);
|
||||||
else
|
else
|
||||||
host_port = 27500; //FIXME: magic number (default server port)
|
host_port = PORT_SERVER;
|
||||||
if (make_host_addr (host_name, host_port, &host_addr) == -1) {
|
if (make_host_addr (host_name, host_port, &host_addr) == -1) {
|
||||||
fprintf (stderr, "could not resolve `%s', skipping", host_name);
|
fprintf (stderr, "could not resolve `%s', skipping", host_name);
|
||||||
continue;
|
continue;
|
||||||
|
@ -375,7 +376,7 @@ int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct sockaddr_in addr;
|
struct sockaddr_in addr;
|
||||||
short port = htons (27000);
|
short port = htons (PORT_MASTER);
|
||||||
#ifndef WIN32 //FIXME
|
#ifndef WIN32 //FIXME
|
||||||
int c;
|
int c;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue