summaryrefslogtreecommitdiffstats
path: root/modules/mbedtls/ssl_context_mbedtls.h
Commit message (Collapse)AuthorAgeFilesLines
* [Net] Rename "ssl" references to "tls" in methods and members.Fabio Alessandrelli2022-09-081-93/+0
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Remove unimplemented methodsMarcel Admiraal2021-10-211-2/+0
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-3/+3
|
* Core: Move DirAccess and FileAccess to `core/io`Rémi Verschelde2021-06-111-1/+1
| | | | | File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already.
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-2/+2
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | 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 🎆
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Merge pull request #36296 from Faless/dtls/enet_vulkanRémi Verschelde2020-02-181-1/+25
|\ | | | | DTLS support + optional ENet encryption
| * New PacketPeerDTLS and DTLSServer classes.Fabio Alessandrelli2020-02-171-1/+23
| | | | | | | | Custom instance implementation via the mbedtls module.
| * Move mbedlts print func to SSLMbedTLSContext.Fabio Alessandrelli2020-02-161-0/+2
| |
* | PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-2/+2
|/ | | | | Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | 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.
* Style: Fix copyright headers in new filesRémi Verschelde2019-08-281-1/+1
|
* Fix regression in StreamPeerSSLFabio Alessandrelli2019-08-221-1/+0
| | | | | Validate that base stream is valid before accepting/connecting. Also remove unnecessary includes.
* Rewrite StreamPeerSSL with SSLContext helper classFabio Alessandrelli2019-08-211-0/+74
connect_to_stream now accepts optional parameter to specify which certificates to trust. Implement accept_stream (SSL server) with key/cert parameters to specify the RSA key and X509 certificate resources.