summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-04-09 02:54:21 +0000
committerSimon Howard2006-04-09 02:54:21 +0000
commit939cea0431be99cf0f20644a05a909d582b6e68a (patch)
treef77bd511483469ea5108007bc525fef95d088f98
parenteb937f4d148a75c4f2b6d3f7687dae4ef2053105 (diff)
downloadchocolate-doom-939cea0431be99cf0f20644a05a909d582b6e68a.tar.gz
chocolate-doom-939cea0431be99cf0f20644a05a909d582b6e68a.tar.bz2
chocolate-doom-939cea0431be99cf0f20644a05a909d582b6e68a.zip
Add change missed from last commit
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 468
-rw-r--r--src/net_io.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net_io.h b/src/net_io.h
index 7ab14501..bad2c1a5 100644
--- a/src/net_io.h
+++ b/src/net_io.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: net_io.h 249 2006-01-02 21:02:16Z fraggle $
+// $Id: net_io.h 468 2006-04-09 02:54:21Z fraggle $
//
// Copyright(C) 2005 Simon Howard
//
@@ -39,9 +39,12 @@
#include "net_defs.h"
+extern net_addr_t net_broadcast_addr;
+
net_context_t *NET_NewContext(void);
void NET_AddModule(net_context_t *context, net_module_t *module);
void NET_SendPacket(net_addr_t *addr, net_packet_t *packet);
+void NET_SendBroadcast(net_context_t *context, net_packet_t *packet);
boolean NET_RecvPacket(net_context_t *context, net_addr_t **addr,
net_packet_t **packet);
char *NET_AddrToString(net_addr_t *addr);