summaryrefslogtreecommitdiffstats
path: root/thirdparty/enet
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-112-0/+4
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Rebrand Godot to RedotRandolph W. Aarseth II2024-10-114-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [ENet] Better handle disconnected peers in DTLS serverFabio Alessandrelli2024-08-021-5/+14
| | | | | | The ENetDTLSServer socket implementation should avoid reporting errors during send and receive operations, unless the socket is effectively no longer usable (and thus ENet should close it).
* enet: Update to 1.3.18Rémi Verschelde2024-05-142-2/+2
| | | | No change, just properly tagging the version we were using.
* enet: Sync with upstream commit c44b7d0Rémi Verschelde2024-04-052-13/+19
| | | | https://github.com/lsalzman/enet/commit/c44b7d0f7ff21edb702745e4c019d0537928c373
* Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-1/+1
|
* [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-1/+1
|
* [ENet] Update to upstream master.Fabio Alessandrelli2023-07-206-167/+240
|
* [TLS] Fix crashes trying to use TLS when not available.Fabio Alessandrelli2023-05-121-0/+2
| | | | | | | | | If no StreamPeerTLS implementation is available, HTTPClient and WebSocketPeer will now correctly refuse to connect using TLS returning ERR_UNAVAILABLE. Similarly, ENetConnection will refuse to setup DTLS when PacketPeerDTLS is not available.
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-282-14/+12
| | | | | | | | | | | | | Use a TLSOptions configuration object which is created via static functions. - "TLSOptions.client": uses the standard CA and common name verification. - "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified) - "TLSOptions.server": is the standard server configuration (chain + key) This will allow us to expand the TLS configuration options to include e.g. mutual authentication without bloating the classes that uses StreamPeerTLS and PacketPeerDTLS as underlying peers.
* One Copyright Update to rule them allRémi Verschelde2023-01-052-58/+60
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Replace most uses of Map by HashMapreduz2022-05-161-8/+9
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Update copyright statements to 2022Rémi Verschelde2022-01-032-4/+4
| | | | Happy new year to the wonderful Godot community!
* [Net] Implement lower level ENet wrappers.Fabio Alessandrelli2021-07-292-10/+29
|
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-2/+2
|
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-2/+2
|
* Rename `IP_Unix`, `IP_Address` and `TCP_Server` to remove underscoresHugo Locurcio2021-05-061-26/+26
|
* Merge pull request #48235 from Faless/feature/network-local-port-enet-salvagedRémi Verschelde2021-04-281-13/+55
|\ | | | | [Net] Implement NetworkedMultiplayerENet.get_local_port
| * Implement NetworkedMultiplayerENet.get_local_portFabio Alessandrelli2021-04-281-13/+55
| | | | | | | | Allows retrieving the local port to which the peer is bound.
* | Core: Drop custom `copymem`/`zeromem` definesRémi Verschelde2021-04-271-2/+2
|/ | | | | | | | We've been using standard C library functions `memcpy`/`memset` for these since 2016 with 67f65f66391327b2967a20a89c3627e1dd6e84eb. There was still the possibility for third-party platform ports to override the definitions with a custom header, but this doesn't seem useful anymore.
* This renames PacketPeerUDP.listen to bind.Fabio Alessandrelli2021-04-121-1/+1
|
* enet: Sync with upstream 1.3.17Rémi Verschelde2021-01-085-213/+162
|
* Update copyright statements to 2021Rémi Verschelde2021-01-012-4/+4
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* ENetGodot: Apply clang-format and style guideRémi Verschelde2020-07-211-56/+35
|
* Reorganize ENet pactches.Fabio Alessandrelli2020-07-145-68/+77
|
* Funnel refuse_new_connections to Godot ENet.Fabio Alessandrelli2020-07-142-0/+12
|
* enet: Update to upstream version 1.3.15Rémi Verschelde2020-04-216-44/+66
|
* Merge pull request #36296 from Faless/dtls/enet_vulkanRémi Verschelde2020-02-182-56/+321
|\ | | | | DTLS support + optional ENet encryption
| * Custom godot sockets for ENet now support DTLS.Fabio Alessandrelli2020-02-172-56/+321
| | | | | | | | Non-DTLS implementation uses plain NetSocket for performance as before.
* | PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-3/+3
|/ | | | | Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
* enet: Sync with upstream 1.3.14Rémi Verschelde2020-01-053-5/+26
| | | | | We still have local modifications necessary for IPv6 support and using Godot sockets.
* enet: Resync with upstream we forked at, add patchRémi Verschelde2020-01-052-2/+106
| | | | | | Before rebasing on the newly released enet 1.3.14, let's resync with the actual commit we initially imported, which seems to be: https://github.com/lsalzman/enet/commit/f46fee0acc8e243b2b6910b09693f93c3aad775f
* Update copyright statements to 2020Rémi Verschelde2020-01-012-4/+4
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Removed a call to `set_blocking_enabled` from function `enet_socket_create` ↵Tarik022019-04-261-1/+0
| | | | since it is already called from https://github.com/godotengine/godot/blob/master/thirdparty/enet/host.c#L63
* Implement function enet_socket_set_option using ENetSocket class's methods.Tarik022019-04-261-0/+40
| | | | | | | | | | | | | Implemented options: - ENET_SOCKOPT_NONBLOCK - ENET_SOCKOPT_BROADCAST - ENET_SOCKOPT_REUSEADDR - ENET_SOCKOPT_NODELAY Not implemented options: - ENET_SOCKOPT_RCVBUF - ENET_SOCKOPT_SNDBUF - ENET_SOCKOPT_RCVTIMEO - ENET_SOCKOPT_SNDTIMEO
* Update copyright statements to 2019Rémi Verschelde2019-01-012-4/+4
| | | | Happy new year to the wonderful Godot community!
* Use NetSocket directly for ENet.Fabio Alessandrelli2018-11-021-29/+35
| | | | Avoid PacketPeerUDP buffering.
* Unify PacketPeerUDP using NetSocketFabio Alessandrelli2018-09-121-2/+2
|
* ENet wrapper properly detect disconnect on pollFabio Alessandrelli2018-09-121-2/+3
| | | | | Now PacketPeerUDP.get_available_packet_count() return -1 if the socket is in error state.
* Update copyright statements to 2018Rémi Verschelde2018-01-012-4/+4
| | | | Happy new year to the wonderful Godot community!
* Fix BSD compile issuesMarcelo Fernandez2017-10-171-0/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-272-2/+2
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-082-0/+2
|
* ENet code cleanup and changes from review.Fabio Alessandrelli2017-03-242-1/+58
|
* Cleanup unused ENet files and updated thirdparty READMEFabio Alessandrelli2017-03-244-1155/+0
|
* Allow non blocking UDP put_packet in C++.Fabio Alessandrelli2017-03-241-1/+9
| | | | | | - Add blocking mode option to PacketPeerUDP. - put_packet returns ERR_UNAVAILABLE when operation would block. - ENet module uses non-blocking UDP.
* Convert ENetAddress host to 16 bytes to accomote IPv6Fabio Alessandrelli2017-03-083-13/+19
|
* Add godot socket implementationFabio Alessandrelli2017-03-082-0/+238
|
* Rename WINRT_ENABLED to UWP_ENABLEDGeorge Marques2016-11-031-3/+3
|
* enet: Split enet thirdparty files and allow unbundlingRémi Verschelde2016-10-1519-0/+6426
Building against shared libraries only implemented for Linux X11 so far. TODO: Document Godot's modifications of upstream enet.