]> icculus.org git repositories - divverent/darkplaces.git/blob - net_bsd.c
fixed forged packet identification to only care about address (not port) and do so...
[divverent/darkplaces.git] / net_bsd.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 #include "net_udp.h"
69
70 net_landriver_t net_landrivers[MAX_NET_DRIVERS] =
71 {
72         {
73         "UDP",
74         false,
75         0,
76         UDP_Init,
77         UDP_Shutdown,
78         UDP_Listen,
79         UDP_OpenSocket,
80         UDP_CloseSocket,
81         UDP_Connect,
82         UDP_CheckNewConnections,
83         UDP_Recv,
84         UDP_Send,
85         UDP_Read,
86         UDP_Write,
87         UDP_Broadcast,
88         UDP_AddrToString,
89         UDP_StringToAddr,
90         UDP_GetSocketAddr,
91         UDP_GetNameFromAddr,
92         UDP_GetAddrFromName,
93         UDP_AddrCompare,
94         UDP_GetSocketPort,
95         UDP_SetSocketPort
96         }
97 };
98
99 int net_numlandrivers = 1;
100