Function defs for packet logging.

This commit is contained in:
Dabb 2001-01-15 16:55:44 +00:00
parent 219a684fd0
commit 936f1f55bb

View file

@ -126,4 +126,11 @@ void Netchan_Setup (netchan_t *chan, netadr_t adr, int qport);
qboolean Netchan_CanPacket (netchan_t *chan);
qboolean Netchan_CanReliable (netchan_t *chan);
#ifdef PACKET_LOGGING
extern int Net_Log_Init (void);
extern void Log_Incoming_Packet (char *p, int len);
extern void Log_Outgoing_Packet (char *p, int len);
extern void Net_LogStop (void);
#endif
#endif // _NET_H