-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpinger.c
64 lines (52 loc) · 1.99 KB
/
pinger.c
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
/*
Copyright (c) 2006 Florian Wesch <[email protected]>. All Rights Reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#include <windows.h>
#else
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#endif
#include <string.h>
#include <unistd.h>
#include "packet.h"
void ping_master(const char *master_addr, int port, const char *servername,
int clients, int players, int creatures)
{
struct sockaddr_in master;
socklen_t addrlen = sizeof(struct sockaddr_in);
size_t namelen = strlen(servername);
if (namelen > 32) namelen = 32;
memset(&master, 0, sizeof(struct sockaddr_in));
master.sin_family = AF_INET;
master.sin_addr.s_addr = inet_addr(master_addr);
master.sin_port = htons(port);
int sock = socket(AF_INET, SOCK_DGRAM, 0);
if (sock < 0)
return;
packet_t packet;
packet_init(&packet, PACKET_MASTER_PING);
packet_write08(&packet, clients);
packet_write08(&packet, players);
packet_write08(&packet, creatures);
packet_writeXX(&packet, servername, namelen);
packet.len = packet.offset;
sendto(sock, &packet, PACKET_HEADER_SIZE + packet.len, 0,
(struct sockaddr *)&master, addrlen);
close(sock);
}