Difference between revisions of "enet.peer:send"
m |
m |
||
Line 17: | Line 17: | ||
* [[enet.peer]] | * [[enet.peer]] | ||
* [[enet.peer:receive]] | * [[enet.peer:receive]] | ||
+ | * [[enet.host]] | ||
+ | * [[enet.event]] | ||
== Other Languages == | == Other Languages == | ||
{{i18n|enet.peer:send}} | {{i18n|enet.peer:send}} |
Revision as of 05:28, 23 April 2021
Queues a packet to be sent to the peer.
Function
Synopsis
peer:send(data, channel, flag)
Arguments
string data
- The contents of the packet, it must be a string.
number channel
- The channel to send the packet on. Optional. Defaults to 0.
string flag
- flag is one of "reliable", "unsequenced", or "unreliable". Reliable packets are guaranteed to arrive, and arrive in the order in which they are sent. Unreliable packets arrive in the order in which they are sent, but they aren't guaranteed to arrive. Unsequenced packets are neither guaranteed to arrive, nor do they have any guarantee on the order they arrive. Optional. Defaults to reliable.
Returns
Nothing.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info