peer.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. /**
  2. @file peer.c
  3. @brief ENet peer management functions
  4. */
  5. #include <string.h>
  6. #define ENET_BUILDING_LIB 1
  7. #include "enet/enet.h"
  8. /** @defgroup peer ENet peer functions
  9. @{
  10. */
  11. /** Configures throttle parameter for a peer.
  12. Unreliable packets are dropped by ENet in response to the varying conditions
  13. of the Internet connection to the peer. The throttle represents a probability
  14. that an unreliable packet should not be dropped and thus sent by ENet to the peer.
  15. The lowest mean round trip time from the sending of a reliable packet to the
  16. receipt of its acknowledgement is measured over an amount of time specified by
  17. the interval parameter in milliseconds. If a measured round trip time happens to
  18. be significantly less than the mean round trip time measured over the interval,
  19. then the throttle probability is increased to allow more traffic by an amount
  20. specified in the acceleration parameter, which is a ratio to the ENET_PEER_PACKET_THROTTLE_SCALE
  21. constant. If a measured round trip time happens to be significantly greater than
  22. the mean round trip time measured over the interval, then the throttle probability
  23. is decreased to limit traffic by an amount specified in the deceleration parameter, which
  24. is a ratio to the ENET_PEER_PACKET_THROTTLE_SCALE constant. When the throttle has
  25. a value of ENET_PEER_PACKET_THROTTLE_SCALE, on unreliable packets are dropped by
  26. ENet, and so 100% of all unreliable packets will be sent. When the throttle has a
  27. value of 0, all unreliable packets are dropped by ENet, and so 0% of all unreliable
  28. packets will be sent. Intermediate values for the throttle represent intermediate
  29. probabilities between 0% and 100% of unreliable packets being sent. The bandwidth
  30. limits of the local and foreign hosts are taken into account to determine a
  31. sensible limit for the throttle probability above which it should not raise even in
  32. the best of conditions.
  33. @param peer peer to configure
  34. @param interval interval, in milliseconds, over which to measure lowest mean RTT; the default value is ENET_PEER_PACKET_THROTTLE_INTERVAL.
  35. @param acceleration rate at which to increase the throttle probability as mean RTT declines
  36. @param deceleration rate at which to decrease the throttle probability as mean RTT increases
  37. */
  38. void
  39. enet_peer_throttle_configure (ENetPeer * peer, enet_uint32 interval, enet_uint32 acceleration, enet_uint32 deceleration)
  40. {
  41. ENetProtocol command;
  42. peer -> packetThrottleInterval = interval;
  43. peer -> packetThrottleAcceleration = acceleration;
  44. peer -> packetThrottleDeceleration = deceleration;
  45. command.header.command = ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  46. command.header.channelID = 0xFF;
  47. command.throttleConfigure.packetThrottleInterval = ENET_HOST_TO_NET_32 (interval);
  48. command.throttleConfigure.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (acceleration);
  49. command.throttleConfigure.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (deceleration);
  50. enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
  51. }
  52. int
  53. enet_peer_throttle (ENetPeer * peer, enet_uint32 rtt)
  54. {
  55. if (peer -> lastRoundTripTime <= peer -> lastRoundTripTimeVariance)
  56. {
  57. peer -> packetThrottle = peer -> packetThrottleLimit;
  58. }
  59. else
  60. if (rtt < peer -> lastRoundTripTime)
  61. {
  62. peer -> packetThrottle += peer -> packetThrottleAcceleration;
  63. if (peer -> packetThrottle > peer -> packetThrottleLimit)
  64. peer -> packetThrottle = peer -> packetThrottleLimit;
  65. return 1;
  66. }
  67. else
  68. if (rtt > peer -> lastRoundTripTime + 2 * peer -> lastRoundTripTimeVariance)
  69. {
  70. if (peer -> packetThrottle > peer -> packetThrottleDeceleration)
  71. peer -> packetThrottle -= peer -> packetThrottleDeceleration;
  72. else
  73. peer -> packetThrottle = 0;
  74. return -1;
  75. }
  76. return 0;
  77. }
  78. /** Queues a packet to be sent.
  79. @param peer destination for the packet
  80. @param channelID channel on which to send
  81. @param packet packet to send
  82. @retval 0 on success
  83. @retval < 0 on failure
  84. */
  85. int
  86. enet_peer_send (ENetPeer * peer, enet_uint8 channelID, ENetPacket * packet)
  87. {
  88. ENetChannel * channel = & peer -> channels [channelID];
  89. ENetProtocol command;
  90. size_t fragmentLength;
  91. if (peer -> state != ENET_PEER_STATE_CONNECTED ||
  92. channelID >= peer -> channelCount)
  93. return -1;
  94. fragmentLength = peer -> mtu - sizeof (ENetProtocolHeader) - sizeof (ENetProtocolSendFragment);
  95. if (packet -> dataLength > fragmentLength)
  96. {
  97. enet_uint16 startSequenceNumber = ENET_HOST_TO_NET_16 (channel -> outgoingReliableSequenceNumber + 1);
  98. enet_uint32 fragmentCount = ENET_HOST_TO_NET_32 ((packet -> dataLength + fragmentLength - 1) / fragmentLength),
  99. fragmentNumber,
  100. fragmentOffset;
  101. packet -> flags |= ENET_PACKET_FLAG_RELIABLE;
  102. packet -> flags &= ~ENET_PACKET_FLAG_UNSEQUENCED;
  103. for (fragmentNumber = 0,
  104. fragmentOffset = 0;
  105. fragmentOffset < packet -> dataLength;
  106. ++ fragmentNumber,
  107. fragmentOffset += fragmentLength)
  108. {
  109. if (packet -> dataLength - fragmentOffset < fragmentLength)
  110. fragmentLength = packet -> dataLength - fragmentOffset;
  111. command.header.command = ENET_PROTOCOL_COMMAND_SEND_FRAGMENT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  112. command.header.channelID = channelID;
  113. command.sendFragment.startSequenceNumber = startSequenceNumber;
  114. command.sendFragment.dataLength = ENET_HOST_TO_NET_16 (fragmentLength);
  115. command.sendFragment.fragmentCount = fragmentCount;
  116. command.sendFragment.fragmentNumber = ENET_HOST_TO_NET_32 (fragmentNumber);
  117. command.sendFragment.totalLength = ENET_HOST_TO_NET_32 (packet -> dataLength);
  118. command.sendFragment.fragmentOffset = ENET_NET_TO_HOST_32 (fragmentOffset);
  119. enet_peer_queue_outgoing_command (peer, & command, packet, fragmentOffset, fragmentLength);
  120. }
  121. return 0;
  122. }
  123. command.header.channelID = channelID;
  124. if (packet -> flags & ENET_PACKET_FLAG_RELIABLE)
  125. {
  126. command.header.command = ENET_PROTOCOL_COMMAND_SEND_RELIABLE | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  127. command.sendReliable.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
  128. }
  129. else
  130. if (packet -> flags & ENET_PACKET_FLAG_UNSEQUENCED)
  131. {
  132. command.header.command = ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED | ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
  133. command.sendUnsequenced.unsequencedGroup = ENET_HOST_TO_NET_16 (peer -> outgoingUnsequencedGroup + 1);
  134. command.sendUnsequenced.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
  135. }
  136. else
  137. {
  138. command.header.command = ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE;
  139. command.sendUnreliable.unreliableSequenceNumber = ENET_HOST_TO_NET_16 (channel -> outgoingUnreliableSequenceNumber + 1);
  140. command.sendUnreliable.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
  141. }
  142. enet_peer_queue_outgoing_command (peer, & command, packet, 0, packet -> dataLength);
  143. return 0;
  144. }
  145. /** Attempts to dequeue any incoming queued packet.
  146. @param peer peer to dequeue packets from
  147. @param channelID channel on which to receive
  148. @returns a pointer to the packet, or NULL if there are no available incoming queued packets
  149. */
  150. ENetPacket *
  151. enet_peer_receive (ENetPeer * peer, enet_uint8 channelID)
  152. {
  153. ENetChannel * channel = & peer -> channels [channelID];
  154. ENetIncomingCommand * incomingCommand = NULL;
  155. ENetPacket * packet;
  156. if (! enet_list_empty (& channel -> incomingUnreliableCommands))
  157. {
  158. incomingCommand = (ENetIncomingCommand *) enet_list_front (& channel -> incomingUnreliableCommands);
  159. if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE)
  160. {
  161. if (incomingCommand -> reliableSequenceNumber != channel -> incomingReliableSequenceNumber)
  162. incomingCommand = NULL;
  163. else
  164. channel -> incomingUnreliableSequenceNumber = incomingCommand -> unreliableSequenceNumber;
  165. }
  166. }
  167. if (incomingCommand == NULL &&
  168. ! enet_list_empty (& channel -> incomingReliableCommands))
  169. {
  170. incomingCommand = (ENetIncomingCommand *) enet_list_front (& channel -> incomingReliableCommands);
  171. if (incomingCommand -> fragmentsRemaining > 0 ||
  172. incomingCommand -> reliableSequenceNumber != (enet_uint16) (channel -> incomingReliableSequenceNumber + 1))
  173. return NULL;
  174. channel -> incomingReliableSequenceNumber = incomingCommand -> reliableSequenceNumber;
  175. if (incomingCommand -> fragmentCount > 0)
  176. channel -> incomingReliableSequenceNumber += incomingCommand -> fragmentCount - 1;
  177. }
  178. if (incomingCommand == NULL)
  179. return NULL;
  180. enet_list_remove (& incomingCommand -> incomingCommandList);
  181. packet = incomingCommand -> packet;
  182. -- packet -> referenceCount;
  183. if (incomingCommand -> fragments != NULL)
  184. enet_free (incomingCommand -> fragments);
  185. enet_free (incomingCommand);
  186. return packet;
  187. }
  188. static void
  189. enet_peer_reset_outgoing_commands (ENetList * queue)
  190. {
  191. ENetOutgoingCommand * outgoingCommand;
  192. while (! enet_list_empty (queue))
  193. {
  194. outgoingCommand = (ENetOutgoingCommand *) enet_list_remove (enet_list_begin (queue));
  195. if (outgoingCommand -> packet != NULL)
  196. {
  197. -- outgoingCommand -> packet -> referenceCount;
  198. if (outgoingCommand -> packet -> referenceCount == 0)
  199. enet_packet_destroy (outgoingCommand -> packet);
  200. }
  201. enet_free (outgoingCommand);
  202. }
  203. }
  204. static void
  205. enet_peer_reset_incoming_commands (ENetList * queue)
  206. {
  207. ENetIncomingCommand * incomingCommand;
  208. while (! enet_list_empty (queue))
  209. {
  210. incomingCommand = (ENetIncomingCommand *) enet_list_remove (enet_list_begin (queue));
  211. if (incomingCommand -> packet != NULL)
  212. {
  213. -- incomingCommand -> packet -> referenceCount;
  214. if (incomingCommand -> packet -> referenceCount == 0)
  215. enet_packet_destroy (incomingCommand -> packet);
  216. }
  217. if (incomingCommand -> fragments != NULL)
  218. enet_free (incomingCommand -> fragments);
  219. enet_free (incomingCommand);
  220. }
  221. }
  222. void
  223. enet_peer_reset_queues (ENetPeer * peer)
  224. {
  225. ENetChannel * channel;
  226. while (! enet_list_empty (& peer -> acknowledgements))
  227. enet_free (enet_list_remove (enet_list_begin (& peer -> acknowledgements)));
  228. enet_peer_reset_outgoing_commands (& peer -> sentReliableCommands);
  229. enet_peer_reset_outgoing_commands (& peer -> sentUnreliableCommands);
  230. enet_peer_reset_outgoing_commands (& peer -> outgoingReliableCommands);
  231. enet_peer_reset_outgoing_commands (& peer -> outgoingUnreliableCommands);
  232. if (peer -> channels != NULL && peer -> channelCount > 0)
  233. {
  234. for (channel = peer -> channels;
  235. channel < & peer -> channels [peer -> channelCount];
  236. ++ channel)
  237. {
  238. enet_peer_reset_incoming_commands (& channel -> incomingReliableCommands);
  239. enet_peer_reset_incoming_commands (& channel -> incomingUnreliableCommands);
  240. }
  241. enet_free (peer -> channels);
  242. }
  243. peer -> channels = NULL;
  244. peer -> channelCount = 0;
  245. }
  246. /** Forcefully disconnects a peer.
  247. @param peer peer to forcefully disconnect
  248. @remarks The foreign host represented by the peer is not notified of the disconnection and will timeout
  249. on its connection to the local host.
  250. */
  251. void
  252. enet_peer_reset (ENetPeer * peer)
  253. {
  254. peer -> outgoingPeerID = ENET_PROTOCOL_MAXIMUM_PEER_ID;
  255. peer -> sessionID = 0;
  256. peer -> state = ENET_PEER_STATE_DISCONNECTED;
  257. peer -> incomingBandwidth = 0;
  258. peer -> outgoingBandwidth = 0;
  259. peer -> incomingBandwidthThrottleEpoch = 0;
  260. peer -> outgoingBandwidthThrottleEpoch = 0;
  261. peer -> incomingDataTotal = 0;
  262. peer -> outgoingDataTotal = 0;
  263. peer -> lastSendTime = 0;
  264. peer -> lastReceiveTime = 0;
  265. peer -> nextTimeout = 0;
  266. peer -> earliestTimeout = 0;
  267. peer -> packetLossEpoch = 0;
  268. peer -> packetsSent = 0;
  269. peer -> packetsLost = 0;
  270. peer -> packetLoss = 0;
  271. peer -> packetLossVariance = 0;
  272. peer -> packetThrottle = ENET_PEER_DEFAULT_PACKET_THROTTLE;
  273. peer -> packetThrottleLimit = ENET_PEER_PACKET_THROTTLE_SCALE;
  274. peer -> packetThrottleCounter = 0;
  275. peer -> packetThrottleEpoch = 0;
  276. peer -> packetThrottleAcceleration = ENET_PEER_PACKET_THROTTLE_ACCELERATION;
  277. peer -> packetThrottleDeceleration = ENET_PEER_PACKET_THROTTLE_DECELERATION;
  278. peer -> packetThrottleInterval = ENET_PEER_PACKET_THROTTLE_INTERVAL;
  279. peer -> lastRoundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
  280. peer -> lowestRoundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
  281. peer -> lastRoundTripTimeVariance = 0;
  282. peer -> highestRoundTripTimeVariance = 0;
  283. peer -> roundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
  284. peer -> roundTripTimeVariance = 0;
  285. peer -> mtu = peer -> host -> mtu;
  286. peer -> reliableDataInTransit = 0;
  287. peer -> outgoingReliableSequenceNumber = 0;
  288. peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  289. peer -> incomingUnsequencedGroup = 0;
  290. peer -> outgoingUnsequencedGroup = 0;
  291. peer -> disconnectData = 0;
  292. memset (peer -> unsequencedWindow, 0, sizeof (peer -> unsequencedWindow));
  293. enet_peer_reset_queues (peer);
  294. }
  295. /** Sends a ping request to a peer.
  296. @param peer destination for the ping request
  297. @remarks ping requests factor into the mean round trip time as designated by the
  298. roundTripTime field in the ENetPeer structure. Enet automatically pings all connected
  299. peers at regular intervals, however, this function may be called to ensure more
  300. frequent ping requests.
  301. */
  302. void
  303. enet_peer_ping (ENetPeer * peer)
  304. {
  305. ENetProtocol command;
  306. if (peer -> state != ENET_PEER_STATE_CONNECTED)
  307. return;
  308. command.header.command = ENET_PROTOCOL_COMMAND_PING | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  309. command.header.channelID = 0xFF;
  310. enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
  311. }
  312. /** Force an immediate disconnection from a peer.
  313. @param peer peer to disconnect
  314. @param data data describing the disconnection
  315. @remarks No ENET_EVENT_DISCONNECT event will be generated. The foreign peer is not
  316. guarenteed to receive the disconnect notification, and is reset immediately upon
  317. return from this function.
  318. */
  319. void
  320. enet_peer_disconnect_now (ENetPeer * peer, enet_uint32 data)
  321. {
  322. ENetProtocol command;
  323. if (peer -> state == ENET_PEER_STATE_DISCONNECTED)
  324. return;
  325. if (peer -> state != ENET_PEER_STATE_ZOMBIE &&
  326. peer -> state != ENET_PEER_STATE_DISCONNECTING)
  327. {
  328. enet_peer_reset_queues (peer);
  329. command.header.command = ENET_PROTOCOL_COMMAND_DISCONNECT | ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
  330. command.header.channelID = 0xFF;
  331. command.disconnect.data = ENET_HOST_TO_NET_32 (data);
  332. enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
  333. enet_host_flush (peer -> host);
  334. }
  335. enet_peer_reset (peer);
  336. }
  337. /** Request a disconnection from a peer.
  338. @param peer peer to request a disconnection
  339. @param data data describing the disconnection
  340. @remarks An ENET_EVENT_DISCONNECT event will be generated by enet_host_service()
  341. once the disconnection is complete.
  342. */
  343. void
  344. enet_peer_disconnect (ENetPeer * peer, enet_uint32 data)
  345. {
  346. ENetProtocol command;
  347. if (peer -> state == ENET_PEER_STATE_DISCONNECTING ||
  348. peer -> state == ENET_PEER_STATE_DISCONNECTED ||
  349. peer -> state == ENET_PEER_STATE_ZOMBIE)
  350. return;
  351. enet_peer_reset_queues (peer);
  352. command.header.command = ENET_PROTOCOL_COMMAND_DISCONNECT;
  353. command.header.channelID = 0xFF;
  354. command.disconnect.data = ENET_HOST_TO_NET_32 (data);
  355. if (peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
  356. command.header.command |= ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  357. else
  358. command.header.command |= ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
  359. enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
  360. if (peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
  361. peer -> state = ENET_PEER_STATE_DISCONNECTING;
  362. else
  363. {
  364. enet_host_flush (peer -> host);
  365. enet_peer_reset (peer);
  366. }
  367. }
  368. /** Request a disconnection from a peer, but only after all queued outgoing packets are sent.
  369. @param peer peer to request a disconnection
  370. @param data data describing the disconnection
  371. @remarks An ENET_EVENT_DISCONNECT event will be generated by enet_host_service()
  372. once the disconnection is complete.
  373. */
  374. void
  375. enet_peer_disconnect_later (ENetPeer * peer, enet_uint32 data)
  376. {
  377. if ((peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER) &&
  378. ! (enet_list_empty (& peer -> outgoingReliableCommands) &&
  379. enet_list_empty (& peer -> outgoingUnreliableCommands) &&
  380. enet_list_empty (& peer -> sentReliableCommands)))
  381. {
  382. peer -> state = ENET_PEER_STATE_DISCONNECT_LATER;
  383. peer -> disconnectData = data;
  384. }
  385. else
  386. enet_peer_disconnect (peer, data);
  387. }
  388. ENetAcknowledgement *
  389. enet_peer_queue_acknowledgement (ENetPeer * peer, const ENetProtocol * command, enet_uint16 sentTime)
  390. {
  391. ENetAcknowledgement * acknowledgement;
  392. peer -> outgoingDataTotal += sizeof (ENetProtocolAcknowledge);
  393. acknowledgement = (ENetAcknowledgement *) enet_malloc (sizeof (ENetAcknowledgement));
  394. acknowledgement -> sentTime = sentTime;
  395. acknowledgement -> command = * command;
  396. enet_list_insert (enet_list_end (& peer -> acknowledgements), acknowledgement);
  397. return acknowledgement;
  398. }
  399. ENetOutgoingCommand *
  400. enet_peer_queue_outgoing_command (ENetPeer * peer, const ENetProtocol * command, ENetPacket * packet, enet_uint32 offset, enet_uint16 length)
  401. {
  402. ENetChannel * channel = & peer -> channels [command -> header.channelID];
  403. ENetOutgoingCommand * outgoingCommand;
  404. peer -> outgoingDataTotal += enet_protocol_command_size (command -> header.command) + length;
  405. outgoingCommand = (ENetOutgoingCommand *) enet_malloc (sizeof (ENetOutgoingCommand));
  406. if (command -> header.channelID == 0xFF)
  407. {
  408. ++ peer -> outgoingReliableSequenceNumber;
  409. outgoingCommand -> reliableSequenceNumber = peer -> outgoingReliableSequenceNumber;
  410. outgoingCommand -> unreliableSequenceNumber = 0;
  411. }
  412. else
  413. if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
  414. {
  415. ++ channel -> outgoingReliableSequenceNumber;
  416. outgoingCommand -> reliableSequenceNumber = channel -> outgoingReliableSequenceNumber;
  417. outgoingCommand -> unreliableSequenceNumber = 0;
  418. }
  419. else
  420. if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED)
  421. {
  422. ++ peer -> outgoingUnsequencedGroup;
  423. outgoingCommand -> reliableSequenceNumber = 0;
  424. outgoingCommand -> unreliableSequenceNumber = 0;
  425. }
  426. else
  427. {
  428. ++ channel -> outgoingUnreliableSequenceNumber;
  429. outgoingCommand -> reliableSequenceNumber = channel -> outgoingReliableSequenceNumber;
  430. outgoingCommand -> unreliableSequenceNumber = channel -> outgoingUnreliableSequenceNumber;
  431. }
  432. outgoingCommand -> sentTime = 0;
  433. outgoingCommand -> roundTripTimeout = 0;
  434. outgoingCommand -> roundTripTimeoutLimit = 0;
  435. outgoingCommand -> fragmentOffset = offset;
  436. outgoingCommand -> fragmentLength = length;
  437. outgoingCommand -> packet = packet;
  438. outgoingCommand -> command = * command;
  439. outgoingCommand -> command.header.reliableSequenceNumber = ENET_HOST_TO_NET_16 (outgoingCommand -> reliableSequenceNumber);
  440. if (packet != NULL)
  441. ++ packet -> referenceCount;
  442. if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
  443. enet_list_insert (enet_list_end (& peer -> outgoingReliableCommands), outgoingCommand);
  444. else
  445. enet_list_insert (enet_list_end (& peer -> outgoingUnreliableCommands), outgoingCommand);
  446. return outgoingCommand;
  447. }
  448. ENetIncomingCommand *
  449. enet_peer_queue_incoming_command (ENetPeer * peer, const ENetProtocol * command, ENetPacket * packet, enet_uint32 fragmentCount)
  450. {
  451. ENetChannel * channel = & peer -> channels [command -> header.channelID];
  452. enet_uint32 unreliableSequenceNumber = 0, reliableSequenceNumber;
  453. ENetIncomingCommand * incomingCommand;
  454. ENetListIterator currentCommand;
  455. if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
  456. goto freePacket;
  457. if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED)
  458. {
  459. reliableSequenceNumber = command -> header.reliableSequenceNumber;
  460. if (channel -> incomingReliableSequenceNumber >= 0xF000 && reliableSequenceNumber < 0x1000)
  461. reliableSequenceNumber += 0x10000;
  462. if (reliableSequenceNumber < channel -> incomingReliableSequenceNumber ||
  463. (channel -> incomingReliableSequenceNumber < 0x1000 && (reliableSequenceNumber & 0xFFFF) >= 0xF000))
  464. goto freePacket;
  465. }
  466. switch (command -> header.command & ENET_PROTOCOL_COMMAND_MASK)
  467. {
  468. case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
  469. case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
  470. if (reliableSequenceNumber == channel -> incomingReliableSequenceNumber)
  471. goto freePacket;
  472. for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingReliableCommands));
  473. currentCommand != enet_list_end (& channel -> incomingReliableCommands);
  474. currentCommand = enet_list_previous (currentCommand))
  475. {
  476. incomingCommand = (ENetIncomingCommand *) currentCommand;
  477. if (reliableSequenceNumber >= 0x10000 && incomingCommand -> reliableSequenceNumber < 0xF000)
  478. reliableSequenceNumber -= 0x10000;
  479. if (incomingCommand -> reliableSequenceNumber <= reliableSequenceNumber)
  480. {
  481. if (incomingCommand -> reliableSequenceNumber < reliableSequenceNumber)
  482. break;
  483. goto freePacket;
  484. }
  485. }
  486. break;
  487. case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
  488. unreliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendUnreliable.unreliableSequenceNumber);
  489. if (channel -> incomingUnreliableSequenceNumber >= 0xF000 && unreliableSequenceNumber < 0x1000)
  490. unreliableSequenceNumber += 0x10000;
  491. if (unreliableSequenceNumber <= channel -> incomingUnreliableSequenceNumber ||
  492. (channel -> incomingUnreliableSequenceNumber < 0x1000 && (unreliableSequenceNumber & 0xFFFF) >= 0xF000))
  493. goto freePacket;
  494. for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingUnreliableCommands));
  495. currentCommand != enet_list_end (& channel -> incomingUnreliableCommands);
  496. currentCommand = enet_list_previous (currentCommand))
  497. {
  498. incomingCommand = (ENetIncomingCommand *) currentCommand;
  499. if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE)
  500. continue;
  501. if (unreliableSequenceNumber >= 0x10000 && incomingCommand -> unreliableSequenceNumber < 0xF000)
  502. unreliableSequenceNumber -= 0x10000;
  503. if (incomingCommand -> unreliableSequenceNumber <= unreliableSequenceNumber)
  504. {
  505. if (incomingCommand -> unreliableSequenceNumber < unreliableSequenceNumber)
  506. break;
  507. goto freePacket;
  508. }
  509. }
  510. break;
  511. case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
  512. currentCommand = enet_list_end (& channel -> incomingUnreliableCommands);
  513. break;
  514. default:
  515. goto freePacket;
  516. }
  517. incomingCommand = (ENetIncomingCommand *) enet_malloc (sizeof (ENetIncomingCommand));
  518. incomingCommand -> reliableSequenceNumber = command -> header.reliableSequenceNumber;
  519. incomingCommand -> unreliableSequenceNumber = unreliableSequenceNumber & 0xFFFF;
  520. incomingCommand -> command = * command;
  521. incomingCommand -> fragmentCount = fragmentCount;
  522. incomingCommand -> fragmentsRemaining = fragmentCount;
  523. incomingCommand -> packet = packet;
  524. incomingCommand -> fragments = NULL;
  525. if (fragmentCount > 0)
  526. {
  527. incomingCommand -> fragments = (enet_uint32 *) enet_malloc ((fragmentCount + 31) / 32 * sizeof (enet_uint32));
  528. memset (incomingCommand -> fragments, 0, (fragmentCount + 31) / 32 * sizeof (enet_uint32));
  529. }
  530. if (packet != NULL)
  531. ++ packet -> referenceCount;
  532. enet_list_insert (enet_list_next (currentCommand), incomingCommand);
  533. return incomingCommand;
  534. freePacket:
  535. if (packet != NULL)
  536. {
  537. if (packet -> referenceCount == 0)
  538. enet_packet_destroy (packet);
  539. }
  540. return NULL;
  541. }
  542. /** @} */