packet.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /**
  2. @file packet.c
  3. @brief ENet packet management functions
  4. */
  5. #include <string.h>
  6. #define ENET_BUILDING_LIB 1
  7. #include "enet/enet.h"
  8. /** @defgroup Packet ENet packet functions
  9. @{
  10. */
  11. /** Creates a packet that may be sent to a peer.
  12. @param dataContents initial contents of the packet's data; the packet's data will remain uninitialized if dataContents is NULL.
  13. @param dataLength size of the data allocated for this packet
  14. @param flags flags for this packet as described for the ENetPacket structure.
  15. @returns the packet on success, NULL on failure
  16. */
  17. ENetPacket *
  18. enet_packet_create (const void * data, size_t dataLength, enet_uint32 flags)
  19. {
  20. ENetPacket * packet = (ENetPacket *) enet_malloc (sizeof (ENetPacket));
  21. if (flags & ENET_PACKET_FLAG_NO_ALLOCATE)
  22. packet -> data = (enet_uint8 *) data;
  23. else
  24. {
  25. packet -> data = (enet_uint8 *) enet_malloc (dataLength);
  26. if (packet -> data == NULL)
  27. {
  28. enet_free (packet);
  29. return NULL;
  30. }
  31. if (data != NULL)
  32. memcpy (packet -> data, data, dataLength);
  33. }
  34. packet -> referenceCount = 0;
  35. packet -> flags = flags;
  36. packet -> dataLength = dataLength;
  37. packet -> freeCallback = NULL;
  38. return packet;
  39. }
  40. /** Destroys the packet and deallocates its data.
  41. @param packet packet to be destroyed
  42. */
  43. void
  44. enet_packet_destroy (ENetPacket * packet)
  45. {
  46. if (packet -> freeCallback != NULL)
  47. (* packet -> freeCallback) (packet);
  48. if (! (packet -> flags & ENET_PACKET_FLAG_NO_ALLOCATE))
  49. enet_free (packet -> data);
  50. enet_free (packet);
  51. }
  52. /** Attempts to resize the data in the packet to length specified in the
  53. dataLength parameter
  54. @param packet packet to resize
  55. @param dataLength new size for the packet data
  56. @returns 0 on success, < 0 on failure
  57. */
  58. int
  59. enet_packet_resize (ENetPacket * packet, size_t dataLength)
  60. {
  61. enet_uint8 * newData;
  62. if (dataLength <= packet -> dataLength || (packet -> flags & ENET_PACKET_FLAG_NO_ALLOCATE))
  63. {
  64. packet -> dataLength = dataLength;
  65. return 0;
  66. }
  67. newData = (enet_uint8 *) enet_malloc (dataLength);
  68. if (newData == NULL)
  69. return -1;
  70. memcpy (newData, packet -> data, packet -> dataLength);
  71. enet_free (packet -> data);
  72. packet -> data = newData;
  73. packet -> dataLength = dataLength;
  74. return 0;
  75. }
  76. static int initializedCRC32 = 0;
  77. static enet_uint32 crcTable [256];
  78. static void initialize_crc32 ()
  79. {
  80. int byte;
  81. for (byte = 0; byte < 256; ++ byte)
  82. {
  83. enet_uint32 crc = byte << 24;
  84. int offset;
  85. for(offset = 0; offset < 8; ++ offset)
  86. {
  87. if (crc & 0x80000000)
  88. crc = (crc << 1) ^ 0x04c11db7;
  89. else
  90. crc <<= 1;
  91. }
  92. crcTable [byte] = crc;
  93. }
  94. initializedCRC32 = 1;
  95. }
  96. enet_uint32
  97. enet_crc32 (const ENetBuffer * buffers, size_t bufferCount)
  98. {
  99. enet_uint32 crc = 0xFFFFFFFF;
  100. if (! initializedCRC32) initialize_crc32 ();
  101. while (bufferCount -- > 0)
  102. {
  103. const enet_uint8 * data = (const enet_uint8 *) buffers -> data,
  104. * dataEnd = & data [buffers -> dataLength];
  105. while (data < dataEnd)
  106. {
  107. crc = ((crc << 8) | * data ++) ^ crcTable [crc >> 24];
  108. }
  109. ++ buffers;
  110. }
  111. return ENET_HOST_TO_NET_32 (~ crc);
  112. }
  113. /** @} */