Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-02 | Relocate home to http://sauerbraten.org/enet/ | Lee Salzman | |
2023-02-05 | avoid explicitly storing roundTripTimeoutLimit | Lee Salzman | |
2023-02-04 | remove unnecessary sent unreliable list from peers | Lee Salzman | |
2023-02-04 | avoid revisiting peers when continuing to send | Lee Salzman | |
2023-02-04 | maintain a separate queue for outgoing send reliable packets | Lee Salzman | |
2023-01-08 | Merge pull request #217 from skyfloogle/ttl | Lee Salzman | |
Add ENET_SOCKOPT_TTL | |||
2023-01-08 | added ENET_SOCKOPT_TTL | Floogle | |
2022-10-17 | Merge pull request #82 from JonnyPtn/master | Lee Salzman | |
Add install target to CMakeLists.txt | |||
2022-10-11 | Merge pull request #209 from daichifukui/dfukui/allow-build-on-hurd-i386 | Lee Salzman | |
allow build on hurd i386 | |||
2022-10-10 | allow build on hurd i386 | Fukui Daichi | |
This patch originates with: https://salsa.debian.org/games-team/enet/-/commit/88648f10bd19d658167b0d303bef05e9e6144278 | |||
2022-08-12 | use a hard-coded crc32 table | Lee Salzman | |
2022-02-20 | more enet_peer_send notes | Lee Salzman | |
2022-02-20 | enet_peer_send note about failure and enet_packet_destroy | Lee Salzman | |
2022-01-19 | Merge pull request #187 from metaquarx/master | Lee Salzman | |
Future proof cmake minimum version | |||
2022-01-19 | future proof cmake minimum version | metaquarx | |
2021-11-11 | silence analyzer warning about peer->channels | Lee Salzman | |
2021-06-13 | switch irc channel | Lee Salzman | |
2021-05-14 | Add install target to CMakeLists.txt | [email protected] | |
2021-04-26 | fix minimum cmake version | Lee Salzman | |
2021-04-25 | better socklen_t detection | Lee Salzman | |
2021-04-25 | silence some MSVC warnings | Lee Salzman | |
2021-01-13 | implement mulberry32 for PRNG | Lee Salzman | |
2020-12-19 | fix more changelog typos | Lee Salzman | |
2020-12-19 | fix typo in changelog | Lee Salzman | |
2020-11-15 | 1.3.17 release prepv1.3.17 | Lee Salzman | |
2020-11-13 | avoid sending packets in unacknowledged window | Lee Salzman | |
2020-10-19 | fix for sending getting too far ahead of receiver | Lee Salzman | |
2020-09-08 | 1.3.16 release prepv1.3.16 | Lee Salzman | |
2020-09-08 | revert failed throttle changes | Lee Salzman | |
2020-09-05 | clamp RTT variance a bit more loosely for throttle | Lee Salzman | |
2020-09-03 | round RTT stats before comparing | Lee Salzman | |
2020-09-01 | clamp minimum highest RTT variance | Lee Salzman | |
2020-08-23 | more command queuing fixes | Lee Salzman | |
2020-08-23 | command queuing fix | Lee Salzman | |
2020-08-23 | make throttle more readily accelerate | Lee Salzman | |
2020-08-12 | make throttle even more tolerant of variance | Lee Salzman | |
2020-07-24 | clamp throttle variance from below based on RTT percentage | Lee Salzman | |
2020-07-23 | fix clearing of outgoing command queue | Lee Salzman | |
2020-07-23 | use unified outgoing command queue for reliable and unreliable commands | Lee Salzman | |
2020-04-20 | fix doc licensev1.3.15 | Lee Salzman | |
2020-04-19 | enet 1.3.15 release prep | Lee Salzman | |
2020-04-16 | update license dates | Lee Salzman | |
2020-04-16 | stabilize packet throttle when RTT variance is low | Lee Salzman | |
2020-04-13 | don't throttle on first RTT measurement | Lee Salzman | |
2020-04-07 | Merge pull request #120 from Vincenz099/master | Lee Salzman | |
Return 0 instead of -1 on enet_protocol_receive_incoming_commands | |||
2020-04-07 | Set DWORD sentLength = 0; | Maxim | |
Same case like receive, we should initialize this variable. | |||
2020-04-07 | Se trecvLength = 0; | Maxim | |
2020-04-07 | Make recvLength = 0; In the rare case of it having bogus data. | Maxim | |
I noticed from testing this that this might be the source of it, I once had a package returned with length total bogus. like 982349829 or something like that, it crashed my game, I suspect this is the source. | |||
2020-04-07 | Return 0 instead of -1 on enet_protocol_receive_incoming_commands | Maxim | |
Return 0 instead of -1 on enet_protocol_receive_incoming_commands when nothing received. This allows the Service loop to continue running and not return an error when there is nothing to do with the socket receive. From debugging I found sometimes the enet_protocol_receive_incoming_commands returns -1 because simply nothing happened in the 256 for loop. Other functions like enet_protocol_send_outgoing_commands return 0 when nothing happened. | |||
2020-04-04 | accumulate fractional RTT values | Lee Salzman | |