protocol.c 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474
  1. /**
  2. @file protocol.c
  3. @brief ENet protocol functions
  4. */
  5. #include <stdio.h>
  6. #include <string.h>
  7. #define ENET_BUILDING_LIB 1
  8. #include "enet/utility.h"
  9. #include "enet/time.h"
  10. #include "enet/enet.h"
  11. static enet_uint32 timeCurrent;
  12. static size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] =
  13. {
  14. 0,
  15. sizeof (ENetProtocolAcknowledge),
  16. sizeof (ENetProtocolConnect),
  17. sizeof (ENetProtocolVerifyConnect),
  18. sizeof (ENetProtocolDisconnect),
  19. sizeof (ENetProtocolPing),
  20. sizeof (ENetProtocolSendReliable),
  21. sizeof (ENetProtocolSendUnreliable),
  22. sizeof (ENetProtocolSendFragment),
  23. sizeof (ENetProtocolSendUnsequenced),
  24. sizeof (ENetProtocolBandwidthLimit),
  25. sizeof (ENetProtocolThrottleConfigure),
  26. };
  27. size_t
  28. enet_protocol_command_size (enet_uint8 commandNumber)
  29. {
  30. return commandSizes [commandNumber & ENET_PROTOCOL_COMMAND_MASK];
  31. }
  32. static int
  33. enet_protocol_dispatch_incoming_commands (ENetHost * host, ENetEvent * event)
  34. {
  35. ENetPeer * currentPeer = host -> lastServicedPeer;
  36. ENetChannel * channel;
  37. do
  38. {
  39. ++ currentPeer;
  40. if (currentPeer >= & host -> peers [host -> peerCount])
  41. currentPeer = host -> peers;
  42. switch (currentPeer -> state)
  43. {
  44. case ENET_PEER_STATE_CONNECTION_PENDING:
  45. case ENET_PEER_STATE_CONNECTION_SUCCEEDED:
  46. currentPeer -> state = ENET_PEER_STATE_CONNECTED;
  47. event -> type = ENET_EVENT_TYPE_CONNECT;
  48. event -> peer = currentPeer;
  49. return 1;
  50. case ENET_PEER_STATE_ZOMBIE:
  51. host -> recalculateBandwidthLimits = 1;
  52. event -> type = ENET_EVENT_TYPE_DISCONNECT;
  53. event -> peer = currentPeer;
  54. event -> data = currentPeer -> disconnectData;
  55. enet_peer_reset (currentPeer);
  56. host -> lastServicedPeer = currentPeer;
  57. return 1;
  58. }
  59. if (currentPeer -> state != ENET_PEER_STATE_CONNECTED)
  60. continue;
  61. for (channel = currentPeer -> channels;
  62. channel < & currentPeer -> channels [currentPeer -> channelCount];
  63. ++ channel)
  64. {
  65. if (enet_list_empty (& channel -> incomingReliableCommands) &&
  66. enet_list_empty (& channel -> incomingUnreliableCommands))
  67. continue;
  68. event -> packet = enet_peer_receive (currentPeer, channel - currentPeer -> channels);
  69. if (event -> packet == NULL)
  70. continue;
  71. event -> type = ENET_EVENT_TYPE_RECEIVE;
  72. event -> peer = currentPeer;
  73. event -> channelID = (enet_uint8) (channel - currentPeer -> channels);
  74. host -> lastServicedPeer = currentPeer;
  75. return 1;
  76. }
  77. } while (currentPeer != host -> lastServicedPeer);
  78. return 0;
  79. }
  80. static void
  81. enet_protocol_notify_connect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  82. {
  83. host -> recalculateBandwidthLimits = 1;
  84. if (event == NULL)
  85. peer -> state = (peer -> state == ENET_PEER_STATE_CONNECTING ? ENET_PEER_STATE_CONNECTION_SUCCEEDED : ENET_PEER_STATE_CONNECTION_PENDING);
  86. else
  87. {
  88. peer -> state = ENET_PEER_STATE_CONNECTED;
  89. event -> type = ENET_EVENT_TYPE_CONNECT;
  90. event -> peer = peer;
  91. }
  92. }
  93. static void
  94. enet_protocol_notify_disconnect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  95. {
  96. if (peer -> state >= ENET_PEER_STATE_CONNECTION_PENDING)
  97. host -> recalculateBandwidthLimits = 1;
  98. if (peer -> state != ENET_PEER_STATE_CONNECTING && peer -> state < ENET_PEER_STATE_CONNECTION_SUCCEEDED)
  99. enet_peer_reset (peer);
  100. else
  101. if (event == NULL)
  102. peer -> state = ENET_PEER_STATE_ZOMBIE;
  103. else
  104. {
  105. event -> type = ENET_EVENT_TYPE_DISCONNECT;
  106. event -> peer = peer;
  107. event -> data = 0;
  108. enet_peer_reset (peer);
  109. }
  110. }
  111. static void
  112. enet_protocol_remove_sent_unreliable_commands (ENetPeer * peer)
  113. {
  114. ENetOutgoingCommand * outgoingCommand;
  115. while (! enet_list_empty (& peer -> sentUnreliableCommands))
  116. {
  117. outgoingCommand = (ENetOutgoingCommand *) enet_list_front (& peer -> sentUnreliableCommands);
  118. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  119. if (outgoingCommand -> packet != NULL)
  120. {
  121. -- outgoingCommand -> packet -> referenceCount;
  122. if (outgoingCommand -> packet -> referenceCount == 0)
  123. enet_packet_destroy (outgoingCommand -> packet);
  124. }
  125. enet_free (outgoingCommand);
  126. }
  127. }
  128. static ENetProtocolCommand
  129. enet_protocol_remove_sent_reliable_command (ENetPeer * peer, enet_uint16 reliableSequenceNumber, enet_uint8 channelID)
  130. {
  131. ENetOutgoingCommand * outgoingCommand;
  132. ENetListIterator currentCommand;
  133. ENetProtocolCommand commandNumber;
  134. for (currentCommand = enet_list_begin (& peer -> sentReliableCommands);
  135. currentCommand != enet_list_end (& peer -> sentReliableCommands);
  136. currentCommand = enet_list_next (currentCommand))
  137. {
  138. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  139. if (outgoingCommand -> reliableSequenceNumber == reliableSequenceNumber &&
  140. outgoingCommand -> command.header.channelID == channelID)
  141. break;
  142. }
  143. if (currentCommand == enet_list_end (& peer -> sentReliableCommands))
  144. return ENET_PROTOCOL_COMMAND_NONE;
  145. commandNumber = outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK;
  146. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  147. if (outgoingCommand -> packet != NULL)
  148. {
  149. peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
  150. -- outgoingCommand -> packet -> referenceCount;
  151. if (outgoingCommand -> packet -> referenceCount == 0)
  152. enet_packet_destroy (outgoingCommand -> packet);
  153. }
  154. enet_free (outgoingCommand);
  155. if (enet_list_empty (& peer -> sentReliableCommands))
  156. return commandNumber;
  157. outgoingCommand = (ENetOutgoingCommand *) enet_list_front (& peer -> sentReliableCommands);
  158. peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
  159. return commandNumber;
  160. }
  161. static ENetPeer *
  162. enet_protocol_handle_connect (ENetHost * host, ENetProtocolHeader * header, ENetProtocol * command)
  163. {
  164. enet_uint16 mtu;
  165. enet_uint32 windowSize;
  166. ENetChannel * channel;
  167. size_t channelCount;
  168. ENetPeer * currentPeer;
  169. ENetProtocol verifyCommand;
  170. #ifdef USE_CRC32
  171. {
  172. enet_uint32 crc = header -> checksum;
  173. ENetBuffer buffer;
  174. command -> header.reliableSequenceNumber = ENET_HOST_TO_NET_16 (command -> header.reliableSequenceNumber);
  175. header -> checksum = command -> connect.sessionID;
  176. buffer.data = host -> receivedData;
  177. buffer.dataLength = host -> receivedDataLength;
  178. if (enet_crc32 (& buffer, 1) != crc)
  179. return NULL;
  180. command -> header.reliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> header.reliableSequenceNumber);
  181. }
  182. #endif
  183. channelCount = ENET_NET_TO_HOST_32 (command -> connect.channelCount);
  184. if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT ||
  185. channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
  186. return NULL;
  187. for (currentPeer = host -> peers;
  188. currentPeer < & host -> peers [host -> peerCount];
  189. ++ currentPeer)
  190. {
  191. if (currentPeer -> state != ENET_PEER_STATE_DISCONNECTED &&
  192. currentPeer -> address.host == host -> receivedAddress.host &&
  193. currentPeer -> address.port == host -> receivedAddress.port &&
  194. currentPeer -> sessionID == command -> connect.sessionID)
  195. return NULL;
  196. }
  197. for (currentPeer = host -> peers;
  198. currentPeer < & host -> peers [host -> peerCount];
  199. ++ currentPeer)
  200. {
  201. if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED)
  202. break;
  203. }
  204. if (currentPeer >= & host -> peers [host -> peerCount])
  205. return NULL;
  206. currentPeer -> state = ENET_PEER_STATE_ACKNOWLEDGING_CONNECT;
  207. currentPeer -> sessionID = command -> connect.sessionID;
  208. currentPeer -> address = host -> receivedAddress;
  209. currentPeer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> connect.outgoingPeerID);
  210. currentPeer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.incomingBandwidth);
  211. currentPeer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.outgoingBandwidth);
  212. currentPeer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleInterval);
  213. currentPeer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleAcceleration);
  214. currentPeer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleDeceleration);
  215. currentPeer -> channels = (ENetChannel *) enet_malloc (channelCount * sizeof (ENetChannel));
  216. currentPeer -> channelCount = channelCount;
  217. for (channel = currentPeer -> channels;
  218. channel < & currentPeer -> channels [channelCount];
  219. ++ channel)
  220. {
  221. channel -> outgoingReliableSequenceNumber = 0;
  222. channel -> outgoingUnreliableSequenceNumber = 0;
  223. channel -> incomingReliableSequenceNumber = 0;
  224. channel -> incomingUnreliableSequenceNumber = 0;
  225. enet_list_clear (& channel -> incomingReliableCommands);
  226. enet_list_clear (& channel -> incomingUnreliableCommands);
  227. }
  228. mtu = ENET_NET_TO_HOST_16 (command -> connect.mtu);
  229. if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
  230. mtu = ENET_PROTOCOL_MINIMUM_MTU;
  231. else
  232. if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
  233. mtu = ENET_PROTOCOL_MAXIMUM_MTU;
  234. currentPeer -> mtu = mtu;
  235. if (host -> outgoingBandwidth == 0 &&
  236. currentPeer -> incomingBandwidth == 0)
  237. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  238. else
  239. currentPeer -> windowSize = (ENET_MIN (host -> outgoingBandwidth, currentPeer -> incomingBandwidth) /
  240. ENET_PEER_WINDOW_SIZE_SCALE) *
  241. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  242. if (currentPeer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  243. currentPeer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  244. else
  245. if (currentPeer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  246. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  247. if (host -> incomingBandwidth == 0)
  248. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  249. else
  250. windowSize = (host -> incomingBandwidth / ENET_PEER_WINDOW_SIZE_SCALE) *
  251. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  252. if (windowSize > ENET_NET_TO_HOST_32 (command -> connect.windowSize))
  253. windowSize = ENET_NET_TO_HOST_32 (command -> connect.windowSize);
  254. if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  255. windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  256. else
  257. if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  258. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  259. verifyCommand.header.command = ENET_PROTOCOL_COMMAND_VERIFY_CONNECT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  260. verifyCommand.header.channelID = 0xFF;
  261. verifyCommand.verifyConnect.outgoingPeerID = ENET_HOST_TO_NET_16 (currentPeer -> incomingPeerID);
  262. verifyCommand.verifyConnect.mtu = ENET_HOST_TO_NET_16 (currentPeer -> mtu);
  263. verifyCommand.verifyConnect.windowSize = ENET_HOST_TO_NET_32 (windowSize);
  264. verifyCommand.verifyConnect.channelCount = ENET_HOST_TO_NET_32 (channelCount);
  265. verifyCommand.verifyConnect.incomingBandwidth = ENET_HOST_TO_NET_32 (host -> incomingBandwidth);
  266. verifyCommand.verifyConnect.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
  267. verifyCommand.verifyConnect.packetThrottleInterval = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleInterval);
  268. verifyCommand.verifyConnect.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleAcceleration);
  269. verifyCommand.verifyConnect.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleDeceleration);
  270. enet_peer_queue_outgoing_command (currentPeer, & verifyCommand, NULL, 0, 0);
  271. return currentPeer;
  272. }
  273. static int
  274. enet_protocol_handle_send_reliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  275. {
  276. ENetPacket * packet;
  277. size_t dataLength;
  278. if (command -> header.channelID >= peer -> channelCount ||
  279. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  280. return -1;
  281. dataLength = ENET_NET_TO_HOST_16 (command -> sendReliable.dataLength);
  282. * currentData += dataLength;
  283. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  284. return -1;
  285. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendReliable),
  286. dataLength,
  287. ENET_PACKET_FLAG_RELIABLE);
  288. if (packet == NULL)
  289. return -1;
  290. enet_peer_queue_incoming_command (peer, command, packet, 0);
  291. return 0;
  292. }
  293. static int
  294. enet_protocol_handle_send_unsequenced (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  295. {
  296. ENetPacket * packet;
  297. enet_uint32 unsequencedGroup, index;
  298. size_t dataLength;
  299. if (command -> header.channelID >= peer -> channelCount ||
  300. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  301. return -1;
  302. dataLength = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.dataLength);
  303. * currentData += dataLength;
  304. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  305. return -1;
  306. unsequencedGroup = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.unsequencedGroup);
  307. index = unsequencedGroup % ENET_PEER_UNSEQUENCED_WINDOW_SIZE;
  308. if (unsequencedGroup >= peer -> incomingUnsequencedGroup + ENET_PEER_UNSEQUENCED_WINDOW_SIZE ||
  309. peer -> incomingUnsequencedGroup >= 0xF000 && unsequencedGroup < 0x1000)
  310. {
  311. peer -> incomingUnsequencedGroup = unsequencedGroup - index;
  312. memset (peer -> unsequencedWindow, 0, sizeof (peer -> unsequencedWindow));
  313. }
  314. else
  315. if (unsequencedGroup < peer -> incomingUnsequencedGroup ||
  316. peer -> unsequencedWindow [index / 32] & (1 << (index % 32)))
  317. return 0;
  318. peer -> unsequencedWindow [index / 32] |= 1 << (index % 32);
  319. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendUnsequenced),
  320. dataLength,
  321. ENET_PACKET_FLAG_UNSEQUENCED);
  322. if (packet == NULL)
  323. return -1;
  324. enet_peer_queue_incoming_command (peer, command, packet, 0);
  325. return 0;
  326. }
  327. static int
  328. enet_protocol_handle_send_unreliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  329. {
  330. ENetPacket * packet;
  331. size_t dataLength;
  332. if (command -> header.channelID >= peer -> channelCount ||
  333. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  334. return -1;
  335. dataLength = ENET_NET_TO_HOST_16 (command -> sendUnreliable.dataLength);
  336. * currentData += dataLength;
  337. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  338. return -1;
  339. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendUnreliable),
  340. dataLength,
  341. 0);
  342. if (packet == NULL)
  343. return -1;
  344. enet_peer_queue_incoming_command (peer, command, packet, 0);
  345. return 0;
  346. }
  347. static int
  348. enet_protocol_handle_send_fragment (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  349. {
  350. enet_uint32 fragmentNumber,
  351. fragmentCount,
  352. fragmentOffset,
  353. fragmentLength,
  354. startSequenceNumber,
  355. totalLength;
  356. ENetChannel * channel;
  357. ENetListIterator currentCommand;
  358. ENetIncomingCommand * startCommand;
  359. if (command -> header.channelID >= peer -> channelCount ||
  360. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  361. return -1;
  362. fragmentLength = ENET_NET_TO_HOST_16 (command -> sendFragment.dataLength);
  363. * currentData += fragmentLength;
  364. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  365. return -1;
  366. channel = & peer -> channels [command -> header.channelID];
  367. startSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendFragment.startSequenceNumber);
  368. if (channel -> incomingReliableSequenceNumber >= 0xF000 && startSequenceNumber < 0x1000)
  369. startSequenceNumber += 0x10000;
  370. if (startSequenceNumber < channel -> incomingReliableSequenceNumber ||
  371. (channel -> incomingReliableSequenceNumber < 0x1000 && (startSequenceNumber & 0xFFFF) >= 0xF000))
  372. return 0;
  373. fragmentNumber = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentNumber);
  374. fragmentCount = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentCount);
  375. fragmentOffset = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentOffset);
  376. totalLength = ENET_NET_TO_HOST_32 (command -> sendFragment.totalLength);
  377. if (fragmentOffset >= totalLength ||
  378. fragmentOffset + fragmentLength > totalLength ||
  379. fragmentNumber >= fragmentCount)
  380. return -1;
  381. for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingReliableCommands));
  382. currentCommand != enet_list_end (& channel -> incomingReliableCommands);
  383. currentCommand = enet_list_previous (currentCommand))
  384. {
  385. startCommand = (ENetIncomingCommand *) currentCommand;
  386. if ((startCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_SEND_FRAGMENT &&
  387. startCommand -> command.sendFragment.startSequenceNumber == (startSequenceNumber & 0xFFFF))
  388. break;
  389. }
  390. if (currentCommand == enet_list_end (& channel -> incomingReliableCommands))
  391. {
  392. ENetProtocol hostCommand = * command;
  393. ENetPacket * packet = enet_packet_create (NULL, totalLength, ENET_PACKET_FLAG_RELIABLE);
  394. if (packet == NULL)
  395. return -1;
  396. hostCommand.header.reliableSequenceNumber = startSequenceNumber;
  397. hostCommand.sendFragment.startSequenceNumber = startSequenceNumber;
  398. hostCommand.sendFragment.dataLength = fragmentLength;
  399. hostCommand.sendFragment.fragmentNumber = fragmentNumber;
  400. hostCommand.sendFragment.fragmentCount = fragmentCount;
  401. hostCommand.sendFragment.fragmentOffset = fragmentOffset;
  402. hostCommand.sendFragment.totalLength = totalLength;
  403. startCommand = enet_peer_queue_incoming_command (peer, & hostCommand, packet, fragmentCount);
  404. }
  405. else
  406. if (totalLength != startCommand -> packet -> dataLength ||
  407. fragmentCount != startCommand -> fragmentCount)
  408. return -1;
  409. if ((startCommand -> fragments [fragmentNumber / 32] & (1 << (fragmentNumber % 32))) == 0)
  410. {
  411. -- startCommand -> fragmentsRemaining;
  412. startCommand -> fragments [fragmentNumber / 32] |= (1 << (fragmentNumber % 32));
  413. if (fragmentOffset + fragmentLength > startCommand -> packet -> dataLength)
  414. fragmentLength = startCommand -> packet -> dataLength - fragmentOffset;
  415. memcpy (startCommand -> packet -> data + fragmentOffset,
  416. (enet_uint8 *) command + sizeof (ENetProtocolSendFragment),
  417. fragmentLength);
  418. }
  419. return 0;
  420. }
  421. static int
  422. enet_protocol_handle_ping (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  423. {
  424. return 0;
  425. }
  426. static int
  427. enet_protocol_handle_bandwidth_limit (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  428. {
  429. peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.incomingBandwidth);
  430. peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.outgoingBandwidth);
  431. if (peer -> incomingBandwidth == 0 && host -> outgoingBandwidth == 0)
  432. peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  433. else
  434. peer -> windowSize = (ENET_MIN (peer -> incomingBandwidth, host -> outgoingBandwidth) /
  435. ENET_PEER_WINDOW_SIZE_SCALE) * ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  436. if (peer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  437. peer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  438. else
  439. if (peer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  440. peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  441. return 0;
  442. }
  443. static int
  444. enet_protocol_handle_throttle_configure (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  445. {
  446. peer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleInterval);
  447. peer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleAcceleration);
  448. peer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleDeceleration);
  449. return 0;
  450. }
  451. static int
  452. enet_protocol_handle_disconnect (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  453. {
  454. enet_peer_reset_queues (peer);
  455. if (peer -> state == ENET_PEER_STATE_CONNECTION_SUCCEEDED)
  456. peer -> state = ENET_PEER_STATE_ZOMBIE;
  457. else
  458. if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
  459. {
  460. if (peer -> state == ENET_PEER_STATE_CONNECTION_PENDING) host -> recalculateBandwidthLimits = 1;
  461. enet_peer_reset (peer);
  462. }
  463. else
  464. if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
  465. peer -> state = ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT;
  466. else
  467. peer -> state = ENET_PEER_STATE_ZOMBIE;
  468. peer -> disconnectData = ENET_NET_TO_HOST_32 (command -> disconnect.data);
  469. return 0;
  470. }
  471. static int
  472. enet_protocol_handle_acknowledge (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
  473. {
  474. enet_uint32 roundTripTime,
  475. receivedSentTime,
  476. receivedReliableSequenceNumber;
  477. ENetProtocolCommand commandNumber;
  478. receivedSentTime = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedSentTime);
  479. receivedSentTime |= timeCurrent & 0xFFFF0000;
  480. if ((receivedSentTime & 0x8000) > (timeCurrent & 0x8000))
  481. receivedSentTime -= 0x10000;
  482. if (ENET_TIME_LESS (timeCurrent, receivedSentTime))
  483. return 0;
  484. peer -> lastReceiveTime = timeCurrent;
  485. peer -> earliestTimeout = 0;
  486. roundTripTime = ENET_TIME_DIFFERENCE (timeCurrent, receivedSentTime);
  487. enet_peer_throttle (peer, roundTripTime);
  488. peer -> roundTripTimeVariance -= peer -> roundTripTimeVariance / 4;
  489. if (roundTripTime >= peer -> roundTripTime)
  490. {
  491. peer -> roundTripTime += (roundTripTime - peer -> roundTripTime) / 8;
  492. peer -> roundTripTimeVariance += (roundTripTime - peer -> roundTripTime) / 4;
  493. }
  494. else
  495. {
  496. peer -> roundTripTime -= (peer -> roundTripTime - roundTripTime) / 8;
  497. peer -> roundTripTimeVariance += (peer -> roundTripTime - roundTripTime) / 4;
  498. }
  499. if (peer -> roundTripTime < peer -> lowestRoundTripTime)
  500. peer -> lowestRoundTripTime = peer -> roundTripTime;
  501. if (peer -> roundTripTimeVariance > peer -> highestRoundTripTimeVariance)
  502. peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
  503. if (peer -> packetThrottleEpoch == 0 ||
  504. ENET_TIME_DIFFERENCE(timeCurrent, peer -> packetThrottleEpoch) >= peer -> packetThrottleInterval)
  505. {
  506. peer -> lastRoundTripTime = peer -> lowestRoundTripTime;
  507. peer -> lastRoundTripTimeVariance = peer -> highestRoundTripTimeVariance;
  508. peer -> lowestRoundTripTime = peer -> roundTripTime;
  509. peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
  510. peer -> packetThrottleEpoch = timeCurrent;
  511. }
  512. receivedReliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedReliableSequenceNumber);
  513. commandNumber = enet_protocol_remove_sent_reliable_command (peer, receivedReliableSequenceNumber, command -> header.channelID);
  514. switch (peer -> state)
  515. {
  516. case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
  517. if (commandNumber != ENET_PROTOCOL_COMMAND_VERIFY_CONNECT)
  518. return -1;
  519. enet_protocol_notify_connect (host, peer, event);
  520. break;
  521. case ENET_PEER_STATE_DISCONNECTING:
  522. if (commandNumber != ENET_PROTOCOL_COMMAND_DISCONNECT)
  523. return -1;
  524. enet_protocol_notify_disconnect (host, peer, event);
  525. break;
  526. case ENET_PEER_STATE_DISCONNECT_LATER:
  527. if (enet_list_empty (& peer -> outgoingReliableCommands) &&
  528. enet_list_empty (& peer -> outgoingUnreliableCommands) &&
  529. enet_list_empty (& peer -> sentReliableCommands))
  530. enet_peer_disconnect (peer, peer -> disconnectData);
  531. break;
  532. }
  533. return 0;
  534. }
  535. static int
  536. enet_protocol_handle_verify_connect (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
  537. {
  538. enet_uint16 mtu;
  539. enet_uint32 windowSize;
  540. if (peer -> state != ENET_PEER_STATE_CONNECTING)
  541. return -1;
  542. if (ENET_NET_TO_HOST_32 (command -> verifyConnect.channelCount) != peer -> channelCount ||
  543. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleInterval) != peer -> packetThrottleInterval ||
  544. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleAcceleration) != peer -> packetThrottleAcceleration ||
  545. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleDeceleration) != peer -> packetThrottleDeceleration)
  546. {
  547. peer -> state = ENET_PEER_STATE_ZOMBIE;
  548. return -1;
  549. }
  550. enet_protocol_remove_sent_reliable_command (peer, 1, 0xFF);
  551. peer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> verifyConnect.outgoingPeerID);
  552. mtu = ENET_NET_TO_HOST_16 (command -> verifyConnect.mtu);
  553. if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
  554. mtu = ENET_PROTOCOL_MINIMUM_MTU;
  555. else
  556. if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
  557. mtu = ENET_PROTOCOL_MAXIMUM_MTU;
  558. if (mtu < peer -> mtu)
  559. peer -> mtu = mtu;
  560. windowSize = ENET_NET_TO_HOST_32 (command -> verifyConnect.windowSize);
  561. if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  562. windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  563. if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  564. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  565. if (windowSize < peer -> windowSize)
  566. peer -> windowSize = windowSize;
  567. peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.incomingBandwidth);
  568. peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.outgoingBandwidth);
  569. enet_protocol_notify_connect (host, peer, event);
  570. return 0;
  571. }
  572. static int
  573. enet_protocol_handle_incoming_commands (ENetHost * host, ENetEvent * event)
  574. {
  575. ENetProtocolHeader * header;
  576. ENetProtocol * command;
  577. ENetPeer * peer;
  578. enet_uint8 * currentData;
  579. size_t headerSize;
  580. enet_uint16 peerID, flags;
  581. if (host -> receivedDataLength < sizeof (ENetProtocolHeader))
  582. return 0;
  583. header = (ENetProtocolHeader *) host -> receivedData;
  584. peerID = ENET_NET_TO_HOST_16 (header -> peerID);
  585. flags = peerID & ENET_PROTOCOL_HEADER_FLAG_MASK;
  586. peerID &= ~ ENET_PROTOCOL_HEADER_FLAG_MASK;
  587. if (peerID == ENET_PROTOCOL_MAXIMUM_PEER_ID)
  588. peer = NULL;
  589. else
  590. if (peerID >= host -> peerCount)
  591. return 0;
  592. else
  593. {
  594. peer = & host -> peers [peerID];
  595. if (peer -> state == ENET_PEER_STATE_DISCONNECTED ||
  596. peer -> state == ENET_PEER_STATE_ZOMBIE ||
  597. (host -> receivedAddress.host != peer -> address.host &&
  598. peer -> address.host != ENET_HOST_BROADCAST))
  599. return 0;
  600. #ifdef USE_CRC32
  601. {
  602. enet_uint32 crc = header -> checksum;
  603. ENetBuffer buffer;
  604. header -> checksum = peer -> sessionID;
  605. buffer.data = host -> receivedData;
  606. buffer.dataLength = host -> receivedDataLength;
  607. if (enet_crc32 (& buffer, 1) != crc)
  608. return 0;
  609. }
  610. #else
  611. if (header -> checksum != peer -> sessionID)
  612. return 0;
  613. #endif
  614. peer -> address.host = host -> receivedAddress.host;
  615. peer -> address.port = host -> receivedAddress.port;
  616. peer -> incomingDataTotal += host -> receivedDataLength;
  617. }
  618. headerSize = (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME ? sizeof (ENetProtocolHeader) : (size_t) & ((ENetProtocolHeader *) 0) -> sentTime);
  619. currentData = host -> receivedData + headerSize;
  620. while (currentData < & host -> receivedData [host -> receivedDataLength])
  621. {
  622. enet_uint8 commandNumber;
  623. size_t commandSize;
  624. command = (ENetProtocol *) currentData;
  625. if (currentData + sizeof (ENetProtocolCommandHeader) > & host -> receivedData [host -> receivedDataLength])
  626. break;
  627. commandNumber = command -> header.command & ENET_PROTOCOL_COMMAND_MASK;
  628. if (commandNumber >= ENET_PROTOCOL_COMMAND_COUNT)
  629. break;
  630. commandSize = commandSizes [commandNumber];
  631. if (commandSize == 0 || currentData + commandSize > & host -> receivedData [host -> receivedDataLength])
  632. break;
  633. currentData += commandSize;
  634. if (peer == NULL && commandNumber != ENET_PROTOCOL_COMMAND_CONNECT)
  635. break;
  636. command -> header.reliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> header.reliableSequenceNumber);
  637. switch (command -> header.command & ENET_PROTOCOL_COMMAND_MASK)
  638. {
  639. case ENET_PROTOCOL_COMMAND_ACKNOWLEDGE:
  640. if (enet_protocol_handle_acknowledge (host, event, peer, command))
  641. goto commandError;
  642. break;
  643. case ENET_PROTOCOL_COMMAND_CONNECT:
  644. peer = enet_protocol_handle_connect (host, header, command);
  645. if (peer == NULL)
  646. goto commandError;
  647. break;
  648. case ENET_PROTOCOL_COMMAND_VERIFY_CONNECT:
  649. if (enet_protocol_handle_verify_connect (host, event, peer, command))
  650. goto commandError;
  651. break;
  652. case ENET_PROTOCOL_COMMAND_DISCONNECT:
  653. if (enet_protocol_handle_disconnect (host, peer, command))
  654. goto commandError;
  655. break;
  656. case ENET_PROTOCOL_COMMAND_PING:
  657. if (enet_protocol_handle_ping (host, peer, command))
  658. goto commandError;
  659. break;
  660. case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
  661. if (enet_protocol_handle_send_reliable (host, peer, command, & currentData))
  662. goto commandError;
  663. break;
  664. case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
  665. if (enet_protocol_handle_send_unreliable (host, peer, command, & currentData))
  666. goto commandError;
  667. break;
  668. case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
  669. if (enet_protocol_handle_send_unsequenced (host, peer, command, & currentData))
  670. goto commandError;
  671. break;
  672. case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
  673. if (enet_protocol_handle_send_fragment (host, peer, command, & currentData))
  674. goto commandError;
  675. break;
  676. case ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT:
  677. if (enet_protocol_handle_bandwidth_limit (host, peer, command))
  678. goto commandError;
  679. break;
  680. case ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE:
  681. if (enet_protocol_handle_throttle_configure (host, peer, command))
  682. goto commandError;
  683. break;
  684. default:
  685. goto commandError;
  686. }
  687. if (peer != NULL &&
  688. (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE) != 0)
  689. {
  690. enet_uint16 sentTime;
  691. if (! (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME))
  692. break;
  693. sentTime = ENET_NET_TO_HOST_16 (header -> sentTime);
  694. switch (peer -> state)
  695. {
  696. case ENET_PEER_STATE_DISCONNECTING:
  697. case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
  698. break;
  699. case ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT:
  700. if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
  701. enet_peer_queue_acknowledgement (peer, command, sentTime);
  702. break;
  703. default:
  704. enet_peer_queue_acknowledgement (peer, command, sentTime);
  705. break;
  706. }
  707. }
  708. }
  709. commandError:
  710. if (event != NULL && event -> type != ENET_EVENT_TYPE_NONE)
  711. return 1;
  712. return 0;
  713. }
  714. static int
  715. enet_protocol_receive_incoming_commands (ENetHost * host, ENetEvent * event)
  716. {
  717. for (;;)
  718. {
  719. int receivedLength;
  720. ENetBuffer buffer;
  721. buffer.data = host -> receivedData;
  722. buffer.dataLength = sizeof (host -> receivedData);
  723. receivedLength = enet_socket_receive (host -> socket,
  724. & host -> receivedAddress,
  725. & buffer,
  726. 1);
  727. if (receivedLength < 0)
  728. return -1;
  729. if (receivedLength == 0)
  730. return 0;
  731. host -> receivedDataLength = receivedLength;
  732. switch (enet_protocol_handle_incoming_commands (host, event))
  733. {
  734. case 1:
  735. return 1;
  736. case -1:
  737. return -1;
  738. default:
  739. break;
  740. }
  741. }
  742. return -1;
  743. }
  744. static void
  745. enet_protocol_send_acknowledgements (ENetHost * host, ENetPeer * peer)
  746. {
  747. ENetProtocol * command = & host -> commands [host -> commandCount];
  748. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  749. ENetAcknowledgement * acknowledgement;
  750. ENetListIterator currentAcknowledgement;
  751. currentAcknowledgement = enet_list_begin (& peer -> acknowledgements);
  752. while (currentAcknowledgement != enet_list_end (& peer -> acknowledgements))
  753. {
  754. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  755. buffer >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  756. peer -> mtu - host -> packetSize < sizeof (ENetProtocolAcknowledge))
  757. {
  758. host -> continueSending = 1;
  759. break;
  760. }
  761. acknowledgement = (ENetAcknowledgement *) currentAcknowledgement;
  762. currentAcknowledgement = enet_list_next (currentAcknowledgement);
  763. buffer -> data = command;
  764. buffer -> dataLength = sizeof (ENetProtocolAcknowledge);
  765. host -> packetSize += buffer -> dataLength;
  766. command -> header.command = ENET_PROTOCOL_COMMAND_ACKNOWLEDGE;
  767. command -> header.channelID = acknowledgement -> command.header.channelID;
  768. command -> acknowledge.receivedReliableSequenceNumber = ENET_HOST_TO_NET_16 (acknowledgement -> command.header.reliableSequenceNumber);
  769. command -> acknowledge.receivedSentTime = ENET_HOST_TO_NET_16 (acknowledgement -> sentTime);
  770. if ((acknowledgement -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
  771. peer -> state = ENET_PEER_STATE_ZOMBIE;
  772. enet_list_remove (& acknowledgement -> acknowledgementList);
  773. enet_free (acknowledgement);
  774. ++ command;
  775. ++ buffer;
  776. }
  777. host -> commandCount = command - host -> commands;
  778. host -> bufferCount = buffer - host -> buffers;
  779. }
  780. static void
  781. enet_protocol_send_unreliable_outgoing_commands (ENetHost * host, ENetPeer * peer)
  782. {
  783. ENetProtocol * command = & host -> commands [host -> commandCount];
  784. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  785. ENetOutgoingCommand * outgoingCommand;
  786. ENetListIterator currentCommand;
  787. currentCommand = enet_list_begin (& peer -> outgoingUnreliableCommands);
  788. while (currentCommand != enet_list_end (& peer -> outgoingUnreliableCommands))
  789. {
  790. size_t commandSize;
  791. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  792. commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK];
  793. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  794. buffer + 1 >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  795. peer -> mtu - host -> packetSize < commandSize ||
  796. (outgoingCommand -> packet != NULL &&
  797. peer -> mtu - host -> packetSize < commandSize + outgoingCommand -> packet -> dataLength))
  798. {
  799. host -> continueSending = 1;
  800. break;
  801. }
  802. currentCommand = enet_list_next (currentCommand);
  803. if (outgoingCommand -> packet != NULL)
  804. {
  805. peer -> packetThrottleCounter += ENET_PEER_PACKET_THROTTLE_COUNTER;
  806. peer -> packetThrottleCounter %= ENET_PEER_PACKET_THROTTLE_SCALE;
  807. if (peer -> packetThrottleCounter > peer -> packetThrottle)
  808. {
  809. -- outgoingCommand -> packet -> referenceCount;
  810. if (outgoingCommand -> packet -> referenceCount == 0)
  811. enet_packet_destroy (outgoingCommand -> packet);
  812. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  813. enet_free (outgoingCommand);
  814. continue;
  815. }
  816. }
  817. buffer -> data = command;
  818. buffer -> dataLength = commandSize;
  819. host -> packetSize += buffer -> dataLength;
  820. * command = outgoingCommand -> command;
  821. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  822. if (outgoingCommand -> packet != NULL)
  823. {
  824. ++ buffer;
  825. buffer -> data = outgoingCommand -> packet -> data;
  826. buffer -> dataLength = outgoingCommand -> packet -> dataLength;
  827. host -> packetSize += buffer -> dataLength;
  828. enet_list_insert (enet_list_end (& peer -> sentUnreliableCommands), outgoingCommand);
  829. }
  830. else
  831. enet_free (outgoingCommand);
  832. ++ command;
  833. ++ buffer;
  834. }
  835. host -> commandCount = command - host -> commands;
  836. host -> bufferCount = buffer - host -> buffers;
  837. if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER &&
  838. enet_list_empty (& peer -> outgoingReliableCommands) &&
  839. enet_list_empty (& peer -> outgoingUnreliableCommands) &&
  840. enet_list_empty (& peer -> sentReliableCommands))
  841. enet_peer_disconnect (peer, peer -> disconnectData);
  842. }
  843. static int
  844. enet_protocol_check_timeouts (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  845. {
  846. ENetOutgoingCommand * outgoingCommand;
  847. ENetListIterator currentCommand;
  848. currentCommand = enet_list_begin (& peer -> sentReliableCommands);
  849. while (currentCommand != enet_list_end (& peer -> sentReliableCommands))
  850. {
  851. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  852. currentCommand = enet_list_next (currentCommand);
  853. if (ENET_TIME_DIFFERENCE (timeCurrent, outgoingCommand -> sentTime) < outgoingCommand -> roundTripTimeout)
  854. continue;
  855. if(peer -> earliestTimeout == 0 ||
  856. ENET_TIME_LESS(outgoingCommand -> sentTime, peer -> earliestTimeout))
  857. peer -> earliestTimeout = outgoingCommand -> sentTime;
  858. if (peer -> earliestTimeout != 0 &&
  859. (ENET_TIME_DIFFERENCE(timeCurrent, peer -> earliestTimeout) >= ENET_PEER_TIMEOUT_MAXIMUM ||
  860. (outgoingCommand -> roundTripTimeout >= outgoingCommand -> roundTripTimeoutLimit &&
  861. ENET_TIME_DIFFERENCE(timeCurrent, peer -> earliestTimeout) >= ENET_PEER_TIMEOUT_MINIMUM)))
  862. {
  863. enet_protocol_notify_disconnect (host, peer, event);
  864. return 1;
  865. }
  866. if (outgoingCommand -> packet != NULL)
  867. peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
  868. ++ peer -> packetsLost;
  869. outgoingCommand -> roundTripTimeout *= 2;
  870. enet_list_insert (enet_list_begin (& peer -> outgoingReliableCommands),
  871. enet_list_remove (& outgoingCommand -> outgoingCommandList));
  872. if (currentCommand == enet_list_begin (& peer -> sentReliableCommands) &&
  873. ! enet_list_empty (& peer -> sentReliableCommands))
  874. {
  875. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  876. peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
  877. }
  878. }
  879. return 0;
  880. }
  881. static void
  882. enet_protocol_send_reliable_outgoing_commands (ENetHost * host, ENetPeer * peer)
  883. {
  884. ENetProtocol * command = & host -> commands [host -> commandCount];
  885. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  886. ENetOutgoingCommand * outgoingCommand;
  887. ENetListIterator currentCommand;
  888. currentCommand = enet_list_begin (& peer -> outgoingReliableCommands);
  889. while (currentCommand != enet_list_end (& peer -> outgoingReliableCommands))
  890. {
  891. size_t commandSize;
  892. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  893. commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK];
  894. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  895. buffer + 1 >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  896. peer -> mtu - host -> packetSize < commandSize)
  897. {
  898. host -> continueSending = 1;
  899. break;
  900. }
  901. currentCommand = enet_list_next (currentCommand);
  902. if (outgoingCommand -> packet != NULL)
  903. {
  904. if (peer -> reliableDataInTransit + outgoingCommand -> fragmentLength > peer -> windowSize)
  905. break;
  906. if ((enet_uint16) (peer -> mtu - host -> packetSize) < (enet_uint16) (commandSize + outgoingCommand -> fragmentLength))
  907. {
  908. host -> continueSending = 1;
  909. break;
  910. }
  911. }
  912. if (outgoingCommand -> roundTripTimeout == 0)
  913. {
  914. outgoingCommand -> roundTripTimeout = peer -> roundTripTime + 4 * peer -> roundTripTimeVariance;
  915. outgoingCommand -> roundTripTimeoutLimit = ENET_PEER_TIMEOUT_LIMIT * outgoingCommand -> roundTripTimeout;
  916. }
  917. if (enet_list_empty (& peer -> sentReliableCommands))
  918. peer -> nextTimeout = timeCurrent + outgoingCommand -> roundTripTimeout;
  919. enet_list_insert (enet_list_end (& peer -> sentReliableCommands),
  920. enet_list_remove (& outgoingCommand -> outgoingCommandList));
  921. outgoingCommand -> sentTime = timeCurrent;
  922. buffer -> data = command;
  923. buffer -> dataLength = commandSize;
  924. host -> packetSize += buffer -> dataLength;
  925. host -> headerFlags |= ENET_PROTOCOL_HEADER_FLAG_SENT_TIME;
  926. * command = outgoingCommand -> command;
  927. if (outgoingCommand -> packet != NULL)
  928. {
  929. ++ buffer;
  930. buffer -> data = outgoingCommand -> packet -> data + outgoingCommand -> fragmentOffset;
  931. buffer -> dataLength = outgoingCommand -> fragmentLength;
  932. host -> packetSize += outgoingCommand -> fragmentLength;
  933. peer -> reliableDataInTransit += outgoingCommand -> fragmentLength;
  934. }
  935. ++ peer -> packetsSent;
  936. ++ command;
  937. ++ buffer;
  938. }
  939. host -> commandCount = command - host -> commands;
  940. host -> bufferCount = buffer - host -> buffers;
  941. }
  942. static int
  943. enet_protocol_send_outgoing_commands (ENetHost * host, ENetEvent * event, int checkForTimeouts)
  944. {
  945. ENetProtocolHeader header;
  946. ENetPeer * currentPeer;
  947. int sentLength;
  948. host -> continueSending = 1;
  949. while (host -> continueSending)
  950. for (host -> continueSending = 0,
  951. currentPeer = host -> peers;
  952. currentPeer < & host -> peers [host -> peerCount];
  953. ++ currentPeer)
  954. {
  955. if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED ||
  956. currentPeer -> state == ENET_PEER_STATE_ZOMBIE)
  957. continue;
  958. host -> headerFlags = 0;
  959. host -> commandCount = 0;
  960. host -> bufferCount = 1;
  961. host -> packetSize = sizeof (ENetProtocolHeader);
  962. if (! enet_list_empty (& currentPeer -> acknowledgements))
  963. enet_protocol_send_acknowledgements (host, currentPeer);
  964. if (checkForTimeouts != 0 &&
  965. ! enet_list_empty (& currentPeer -> sentReliableCommands) &&
  966. ENET_TIME_GREATER_EQUAL (timeCurrent, currentPeer -> nextTimeout) &&
  967. enet_protocol_check_timeouts (host, currentPeer, event) == 1)
  968. return 1;
  969. if (! enet_list_empty (& currentPeer -> outgoingReliableCommands))
  970. enet_protocol_send_reliable_outgoing_commands (host, currentPeer);
  971. else
  972. if (enet_list_empty (& currentPeer -> sentReliableCommands) &&
  973. ENET_TIME_DIFFERENCE (timeCurrent, currentPeer -> lastReceiveTime) >= ENET_PEER_PING_INTERVAL &&
  974. currentPeer -> mtu - host -> packetSize >= sizeof (ENetProtocolPing))
  975. {
  976. enet_peer_ping (currentPeer);
  977. enet_protocol_send_reliable_outgoing_commands (host, currentPeer);
  978. }
  979. if (! enet_list_empty (& currentPeer -> outgoingUnreliableCommands))
  980. enet_protocol_send_unreliable_outgoing_commands (host, currentPeer);
  981. if (host -> commandCount == 0)
  982. continue;
  983. if (currentPeer -> packetLossEpoch == 0)
  984. currentPeer -> packetLossEpoch = timeCurrent;
  985. else
  986. if (ENET_TIME_DIFFERENCE (timeCurrent, currentPeer -> packetLossEpoch) >= ENET_PEER_PACKET_LOSS_INTERVAL &&
  987. currentPeer -> packetsSent > 0)
  988. {
  989. enet_uint32 packetLoss = currentPeer -> packetsLost * ENET_PEER_PACKET_LOSS_SCALE / currentPeer -> packetsSent;
  990. #ifdef ENET_DEBUG
  991. #ifdef WIN32
  992. printf (
  993. #else
  994. fprintf (stderr,
  995. #endif
  996. "peer %u: %f%%+-%f%% packet loss, %u+-%u ms round trip time, %f%% throttle, %u/%u outgoing, %u/%u incoming\n", currentPeer -> incomingPeerID, currentPeer -> packetLoss / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> packetLossVariance / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> roundTripTime, currentPeer -> roundTripTimeVariance, currentPeer -> packetThrottle / (float) ENET_PEER_PACKET_THROTTLE_SCALE, enet_list_size (& currentPeer -> outgoingReliableCommands), enet_list_size (& currentPeer -> outgoingUnreliableCommands), currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingReliableCommands) : 0, currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingUnreliableCommands) : 0);
  997. #endif
  998. currentPeer -> packetLossVariance -= currentPeer -> packetLossVariance / 4;
  999. if (packetLoss >= currentPeer -> packetLoss)
  1000. {
  1001. currentPeer -> packetLoss += (packetLoss - currentPeer -> packetLoss) / 8;
  1002. currentPeer -> packetLossVariance += (packetLoss - currentPeer -> packetLoss) / 4;
  1003. }
  1004. else
  1005. {
  1006. currentPeer -> packetLoss -= (currentPeer -> packetLoss - packetLoss) / 8;
  1007. currentPeer -> packetLossVariance += (currentPeer -> packetLoss - packetLoss) / 4;
  1008. }
  1009. currentPeer -> packetLossEpoch = timeCurrent;
  1010. currentPeer -> packetsSent = 0;
  1011. currentPeer -> packetsLost = 0;
  1012. }
  1013. header.checksum = currentPeer -> sessionID;
  1014. header.peerID = ENET_HOST_TO_NET_16 (currentPeer -> outgoingPeerID | host -> headerFlags);
  1015. host -> buffers -> data = & header;
  1016. if (host -> headerFlags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME)
  1017. {
  1018. header.sentTime = ENET_HOST_TO_NET_16 (timeCurrent & 0xFFFF);
  1019. host -> buffers -> dataLength = sizeof (ENetProtocolHeader);
  1020. }
  1021. else
  1022. host -> buffers -> dataLength = (size_t) & ((ENetProtocolHeader *) 0) -> sentTime;
  1023. #ifdef USE_CRC32
  1024. header.checksum = enet_crc32 (host -> buffers, host -> bufferCount);
  1025. #endif
  1026. currentPeer -> lastSendTime = timeCurrent;
  1027. sentLength = enet_socket_send (host -> socket, & currentPeer -> address, host -> buffers, host -> bufferCount);
  1028. enet_protocol_remove_sent_unreliable_commands (currentPeer);
  1029. if (sentLength < 0)
  1030. return -1;
  1031. }
  1032. return 0;
  1033. }
  1034. /** Sends any queued packets on the host specified to its designated peers.
  1035. @param host host to flush
  1036. @remarks this function need only be used in circumstances where one wishes to send queued packets earlier than in a call to enet_host_service().
  1037. @ingroup host
  1038. */
  1039. void
  1040. enet_host_flush (ENetHost * host)
  1041. {
  1042. timeCurrent = enet_time_get ();
  1043. enet_protocol_send_outgoing_commands (host, NULL, 0);
  1044. }
  1045. /** Waits for events on the host specified and shuttles packets between
  1046. the host and its peers.
  1047. @param host host to service
  1048. @param event an event structure where event details will be placed if one occurs
  1049. if event == NULL then no events will be delivered
  1050. @param timeout number of milliseconds that ENet should wait for events
  1051. @retval > 0 if an event occurred within the specified time limit
  1052. @retval 0 if no event occurred
  1053. @retval < 0 on failure
  1054. @remarks enet_host_service should be called fairly regularly for adequate performance
  1055. @ingroup host
  1056. */
  1057. int
  1058. enet_host_service (ENetHost * host, ENetEvent * event, enet_uint32 timeout)
  1059. {
  1060. enet_uint32 waitCondition;
  1061. if (event != NULL)
  1062. {
  1063. event -> type = ENET_EVENT_TYPE_NONE;
  1064. event -> peer = NULL;
  1065. event -> packet = NULL;
  1066. switch (enet_protocol_dispatch_incoming_commands (host, event))
  1067. {
  1068. case 1:
  1069. return 1;
  1070. case -1:
  1071. perror ("Error dispatching incoming packets");
  1072. return -1;
  1073. default:
  1074. break;
  1075. }
  1076. }
  1077. timeCurrent = enet_time_get ();
  1078. timeout += timeCurrent;
  1079. do
  1080. {
  1081. if (ENET_TIME_DIFFERENCE (timeCurrent, host -> bandwidthThrottleEpoch) >= ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL)
  1082. enet_host_bandwidth_throttle (host);
  1083. switch (enet_protocol_send_outgoing_commands (host, event, 1))
  1084. {
  1085. case 1:
  1086. return 1;
  1087. case -1:
  1088. perror ("Error sending outgoing packets");
  1089. return -1;
  1090. default:
  1091. break;
  1092. }
  1093. switch (enet_protocol_receive_incoming_commands (host, event))
  1094. {
  1095. case 1:
  1096. return 1;
  1097. case -1:
  1098. perror ("Error receiving incoming packets");
  1099. return -1;
  1100. default:
  1101. break;
  1102. }
  1103. switch (enet_protocol_send_outgoing_commands (host, event, 1))
  1104. {
  1105. case 1:
  1106. return 1;
  1107. case -1:
  1108. perror ("Error sending outgoing packets");
  1109. return -1;
  1110. default:
  1111. break;
  1112. }
  1113. if (event != NULL)
  1114. {
  1115. switch (enet_protocol_dispatch_incoming_commands (host, event))
  1116. {
  1117. case 1:
  1118. return 1;
  1119. case -1:
  1120. perror ("Error dispatching incoming packets");
  1121. return -1;
  1122. default:
  1123. break;
  1124. }
  1125. }
  1126. timeCurrent = enet_time_get ();
  1127. if (ENET_TIME_GREATER_EQUAL (timeCurrent, timeout))
  1128. return 0;
  1129. waitCondition = ENET_SOCKET_WAIT_RECEIVE;
  1130. if (enet_socket_wait (host -> socket, & waitCondition, ENET_TIME_DIFFERENCE (timeout, timeCurrent)) != 0)
  1131. return -1;
  1132. timeCurrent = enet_time_get ();
  1133. } while (waitCondition == ENET_SOCKET_WAIT_RECEIVE);
  1134. return 0;
  1135. }