summaryrefslogtreecommitdiffstats
path: root/doc/classes/DTLSServer.xml
Commit message (Collapse)AuthorAgeFilesLines
* [Doc] Fix casing of some C# namesA Thousand Ships2024-03-201-3/+3
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Change to_utf8 to to_utf8_buffer and to_ascii to to_ascii_buffer in ↵mara2023-04-101-4/+4
| | | | | | | | remaining docs The method `to_utf8` doesn't exist in Godot 4, but is still mentioned in the documentation in some places. Replace it with the new name `to_utf8_buffer`. Same for ascii. Same for C#.
* Fix GDScript code style regarding colonDanil Alexeev2023-03-051-2/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix C# examples in documentationRaul Santos2023-01-311-32/+35
| | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely.
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-281-4/+2
| | | | | | | | | | | | | 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.
* Class reference: snake_case .gd filenames, _on_*Doug Thompson2023-01-151-2/+2
| | | | | This is for: https://github.com/godotengine/godot-docs/issues/6245
* [doc] Use "param" instead of "code" to refer to parameters (7)Andy Maloney2022-08-121-2/+2
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-4/+4
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphsRémi Verschelde2021-10-051-1/+1
| | | | And fix up formatting not supported by makerst.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-12/+6
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* Variant: Sync docs with new constructors, fixups after #43403Rémi Verschelde2020-11-091-1/+1
| | | | | Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors.
* Port code examples to C# (D)HaSa10022020-11-011-6/+91
| | | | | | | | | | | | | | | | | | | | Includes: * Decal * Dictionary * Directory * DisplayServer * DTLSServer * DynamicFont * EditorImportPlugin * EditorPlugin * EditorScenePostImport * EditorScript * EditorSettings * EditorTranslationParserPlugin * Engine * Expression Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* doc: Sync classref with current sourceRémi Verschelde2020-02-191-3/+3
|
* Add documentation for new DTLS features.Fabio Alessandrelli2020-02-171-0/+90