]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - net_win.c
3bd5d1d65811c7b81b89e94f0cdc5365a857b20f
[xonotic/darkplaces.git] / net_win.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 #include "quakedef.h"
21
22 #include "net_loop.h"
23 #include "net_dgrm.h"
24
25 net_driver_t net_drivers[MAX_NET_DRIVERS] =
26 {
27         {
28         "Loopback",
29         false,
30         Loop_Init,
31         Loop_Listen,
32         Loop_SearchForHosts,
33         Loop_SearchForInetHosts,
34         Loop_Connect,
35         Loop_CheckNewConnections,
36         Loop_GetMessage,
37         Loop_SendMessage,
38         Loop_SendUnreliableMessage,
39         Loop_CanSendMessage,
40         Loop_CanSendUnreliableMessage,
41         Loop_Close,
42         Loop_Shutdown,
43         Loop_Heartbeat
44         }
45         ,
46         {
47         "Datagram",
48         false,
49         Datagram_Init,
50         Datagram_Listen,
51         Datagram_SearchForHosts,
52         Datagram_SearchForInetHosts,
53         Datagram_Connect,
54         Datagram_CheckNewConnections,
55         Datagram_GetMessage,
56         Datagram_SendMessage,
57         Datagram_SendUnreliableMessage,
58         Datagram_CanSendMessage,
59         Datagram_CanSendUnreliableMessage,
60         Datagram_Close,
61         Datagram_Shutdown,
62         Datagram_Heartbeat
63         }
64 };
65
66 int net_numdrivers = 2;
67
68
69 #include "net_wins.h"
70
71 net_landriver_t net_landrivers[MAX_NET_DRIVERS] =
72 {
73         {
74         "Winsock TCPIP",
75         false,
76         0,
77         WINS_Init,
78         WINS_Shutdown,
79         WINS_Listen,
80         WINS_OpenSocket,
81         WINS_CloseSocket,
82         WINS_Connect,
83         WINS_CheckNewConnections,
84         WINS_Recv,
85         WINS_Send,
86         WINS_Read,
87         WINS_Write,
88         WINS_Broadcast,
89         WINS_AddrToString,
90         WINS_StringToAddr,
91         WINS_GetSocketAddr,
92         WINS_GetNameFromAddr,
93         WINS_GetAddrFromName,
94         WINS_AddrCompare,
95         WINS_GetSocketPort,
96         WINS_SetSocketPort
97         }
98 };
99
100 int net_numlandrivers = 1;
101