summaryrefslogtreecommitdiffstats
path: root/doc/classes/PacketPeerUDP.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add examples to PacketPeerUDP class documentation.Emanuil Chizhov2024-11-101-1/+26
| | | | | | | | | | | | | | | | | | | | | | Add examples for sending packets and listening for packets. Fix documentation indentation. Change tabs to spaced for codeblocks. Fix typos Remove typing in documentation code Add a blank line to comply with style guidelines Fix blank line to contain tabs Remove tabs from empty code lines Commit suggested changes by Mickeon Use correct syntax for >
* [Doc] Fix casing of some C# namesA Thousand Ships2024-03-201-1/+1
|
* Overhaul some "uncommon" wording in class referenceMicky2024-03-011-1/+1
|
* 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-2/+2
| | | | | | | | 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#.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* [Net] Rename "ssl" references to "tls" in methods and members.Fabio Alessandrelli2022-09-081-1/+1
|
* [doc] Use "param" instead of "code" to refer to parameters (4)Andy Maloney2022-08-111-7/+7
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-12/+12
|
* [Net] Drop is_connected_to_host for TCP and UDP.Fabio Alessandrelli2022-03-271-1/+1
| | | | | | | | | | The UDP method is now called `is_socket_connected` to limit confusion with the actual host connection status which doesn't make sense in UDP. The TCP method is completly dropped, use get_status instead. The only one left is the WebSocketPeer one, which should be fine as is for now.
* 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.
* Fix indentations in class reference XMLsHaoyu Qiu2021-12-151-28/+28
|
* doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphsRémi Verschelde2021-10-051-3/+3
| | | | And fix up formatting not supported by makerst.
* Document Android permission requirements for network access where neededHugo Locurcio2021-09-251-0/+1
|
* 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-50/+25
| | | | | | | | 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.
* Fix casing of the "to" stop word in editor stringsHugo Locurcio2021-07-131-1/+1
| | | | | This also fixes a C# documentation example that had one of its strings incorrectly converted.
* This renames PacketPeerUDP.listen to bind.Fabio Alessandrelli2021-04-121-22/+22
|
* Allow local port control on net_socket connectionsdam2021-04-121-0/+7
|
* Docs: Port Code Examples to C# (M, N, O, P, R)HaSa10022020-11-091-10/+29
| | | | | | | | | | | | | | | | | | | | Includes: * MarginContainer * NavigationPolygon * Node * NodePath * OS * PackedByteArray * PackedScene * PacketPeerUDP * PCKPacker * Performance * PhysicsShapeQueryParameters2D * PhysicsShapeQueryParameters3D * PrimitiveMesh * ProjectSettings Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* Document how to interrupt `PacketPeerUDP.wait()`Hugo Locurcio2020-10-151-1/+13
| | | | This closes #36335.
* Fix various typosluz.paz2020-03-111-1/+1
| | | Found via `codespell`
* Add documentation for new DTLS features.Fabio Alessandrelli2020-02-171-0/+19
|
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* Add Android NetSocket implementation.Fabio Alessandrelli2019-12-141-0/+2
| | | | Automatically acquire and release multicast lock when needed.
* UDP sockets broadcast is now disabled by default.Fabio Alessandrelli2019-12-141-0/+10
| | | | | Add method `set_broadcast_enabled` to allow enabling broadcast via GDScript.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-9/+9
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* Multicast support in NetSocket/PacketPeerUDPFabio Alessandrelli2019-06-211-0/+23
|
* Change "Return" to "Returns" where necessary in XML documentationSean Heffernan2019-05-231-3/+3
| | | | | | | | In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27465 from ↵Rémi Verschelde2019-04-051-3/+3
|\ | | | | | | | | neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support
| * ClassRef: Replace [code]CurrentClass[/code] with [CurrentClass]Ignacio Etcheverry2019-03-291-3/+3
| | | | | | | | Modified makerst to generate code tags for these to avoid hyperlinks to the same class.
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* [docs] fix links in class docsKelly Thomas2018-05-141-2/+2
|
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|
* doc: Remove revision.module_config from version stringRémi Verschelde2017-11-151-1/+1
| | | | | It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.
* classref: Sync with current sourceRémi Verschelde2017-10-221-3/+3
| | | | | Also fix hyperlink references to same class as per the guidelines. [ci skip]
* makerst: Fix rst-ization of members and escaping of [Class]sRémi Verschelde2017-10-211-1/+1
| | | | Fixes #11517.
* Changed the doc class generation to individual files per class. It is also ↵Juan Linietsky2017-09-121-0/+79
possible to save module files in module directories and the build system will recognize them.