PacketPeer
Hereda: RefCounted < Object
Heredado por: ENetPacketPeer, MultiplayerPeer, PacketPeerDTLS, PacketPeerExtension, PacketPeerStream, PacketPeerUDP, WebRTCDataChannel, WebSocketPeer
Abstracción y clase base para protocolos basados en paquetes.
Descripción
PacketPeer is an abstraction and base class for packet-based protocols (such as UDP). It provides an API for sending and receiving packets both as raw data or variables. This makes it easy to transfer data over a protocol, without having to encode data as low-level bytes or having to worry about network ordering.
Note: When exporting to Android, make sure to enable the INTERNET permission in the Android export preset before exporting the project or using one-click deploy. Otherwise, network communication of any kind will be blocked by Android.
Propiedades
|
Métodos
get_available_packet_count() const |
|
get_packet_error() const |
|
put_packet(buffer: PackedByteArray) |
|
Descripciones de Propiedades
int encode_buffer_max_size = 8388608 🔗
Maximum buffer size allowed when encoding Variants. Raise this value to support heavier memory allocations.
The put_var() method allocates memory on the stack, and the buffer used will grow automatically to the closest power of two to match the size of the Variant. If the Variant is bigger than encode_buffer_max_size, the method will error out with @GlobalScope.ERR_OUT_OF_MEMORY.
Descripciones de Métodos
int get_available_packet_count() const 🔗
Devuelve el número de paquetes actualmente disponibles en el ring-buffer.
PackedByteArray get_packet() 🔗
Recibe un paquete crudo.
Error get_packet_error() const 🔗
Devuelve el estado de error del último paquete recibido (a través de get_packet() y get_var()).
Variant get_var(allow_objects: bool = false) 🔗
Gets a Variant. If allow_objects is true, decoding objects is allowed.
Internally, this uses the same decoding mechanism as the @GlobalScope.bytes_to_var() method.
Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.
Error put_packet(buffer: PackedByteArray) 🔗
Envía un paquete crudo.
Error put_var(var: Variant, full_objects: bool = false) 🔗
Sends a Variant as a packet. If full_objects is true, encoding objects is allowed (and can potentially include code).
Internally, this uses the same encoding mechanism as the @GlobalScope.var_to_bytes() method.