diff -r ee99976fa536 -r dcc73c6b395d src/network/core/packet.h --- a/src/network/core/packet.h Wed Jan 31 09:49:02 2007 +0000 +++ b/src/network/core/packet.h Wed Jan 31 09:51:22 2007 +0000 @@ -24,9 +24,9 @@ * packet. Reading past the size of the packet when receiving * will return all 0 values and "" in case of the string. */ -typedef struct Packet { +struct Packet { /** The next packet. Used for queueing packets before sending. */ - struct Packet *next; + Packet *next; /** The size of the whole packet for received packets. For packets * that will be sent, the value is filled in just before the * actual transmission. */ @@ -35,7 +35,7 @@ PacketSize pos; /** The buffer of this packet */ byte buffer[SEND_MTU]; -} Packet; +}; Packet *NetworkSend_Init(const PacketType type);