X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=server.h;h=f76e0f8af6a2b3c6fdd58f4a1e1f04abb5940616;hb=2ca3c4f06325e060856e75634d584a0f19f1df12;hp=f71a1f1435d4621fa2196bd00662792504f2a39b;hpb=2cadb08a5230c73be4599c7543fd02edfb350932;p=xonotic%2Fdarkplaces.git diff --git a/server.h b/server.h index f71a1f14..f76e0f8a 100644 --- a/server.h +++ b/server.h @@ -83,15 +83,15 @@ typedef struct server_s server_state_t state; sizebuf_t datagram; - qbyte datagram_buf[NET_MAXMESSAGE]; + unsigned char datagram_buf[NET_MAXMESSAGE]; // copied to all clients at end of frame sizebuf_t reliable_datagram; - qbyte reliable_datagram_buf[NET_MAXMESSAGE]; + unsigned char reliable_datagram_buf[NET_MAXMESSAGE]; sizebuf_t signon; // LordHavoc: increased signon message buffer from 8192 - qbyte signon_buf[NET_MAXMESSAGE]; + unsigned char signon_buf[NET_MAXMESSAGE]; } server_t; // if defined this does ping smoothing, otherwise it does not @@ -132,7 +132,7 @@ typedef struct client_s // can be added to at any time, copied and clear once per frame sizebuf_t message; - qbyte msgbuf[NET_MAXMESSAGE]; + unsigned char msgbuf[NET_MAXMESSAGE]; // PRVM_EDICT_NUM(clientnum+1) prvm_edict_t *edict;