mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
fix broken ipv6 address field
This commit is contained in:
parent
3d35af018f
commit
07ae0ed92c
1 changed files with 4 additions and 0 deletions
|
@ -37,7 +37,11 @@
|
|||
|
||||
typedef struct
|
||||
{
|
||||
#ifdef HAVE_IPV6
|
||||
byte ip[16];
|
||||
#else
|
||||
byte ip[4];
|
||||
#endif
|
||||
unsigned short port;
|
||||
unsigned short family; // used to be pad, before IPV6
|
||||
} netadr_t;
|
||||
|
|
Loading…
Reference in a new issue