:github_url: hide .. Generated automatically by doc/tools/make_rst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the PacketPeerStream.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_PacketPeerStream: PacketPeerStream ================ **Inherits:** :ref:`PacketPeer` **<** :ref:`RefCounted` **<** :ref:`Object` Wrapper to use a PacketPeer over a StreamPeer. Description ----------- PacketStreamPeer provides a wrapper for working using packets over a stream. This allows for using packet based code with StreamPeers. PacketPeerStream implements a custom protocol over the StreamPeer, so the user should not read or write to the wrapped StreamPeer directly. \ **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. Properties ---------- +-------------------------------------+---------------------------------------------------------------------------------------+-----------+ | :ref:`int` | :ref:`input_buffer_max_size` | ``65532`` | +-------------------------------------+---------------------------------------------------------------------------------------+-----------+ | :ref:`int` | :ref:`output_buffer_max_size` | ``65532`` | +-------------------------------------+---------------------------------------------------------------------------------------+-----------+ | :ref:`StreamPeer` | :ref:`stream_peer` | | +-------------------------------------+---------------------------------------------------------------------------------------+-----------+ Property Descriptions --------------------- .. _class_PacketPeerStream_property_input_buffer_max_size: - :ref:`int` **input_buffer_max_size** +-----------+----------------------------------+ | *Default* | ``65532`` | +-----------+----------------------------------+ | *Setter* | set_input_buffer_max_size(value) | +-----------+----------------------------------+ | *Getter* | get_input_buffer_max_size() | +-----------+----------------------------------+ ---- .. _class_PacketPeerStream_property_output_buffer_max_size: - :ref:`int` **output_buffer_max_size** +-----------+-----------------------------------+ | *Default* | ``65532`` | +-----------+-----------------------------------+ | *Setter* | set_output_buffer_max_size(value) | +-----------+-----------------------------------+ | *Getter* | get_output_buffer_max_size() | +-----------+-----------------------------------+ ---- .. _class_PacketPeerStream_property_stream_peer: - :ref:`StreamPeer` **stream_peer** +----------+------------------------+ | *Setter* | set_stream_peer(value) | +----------+------------------------+ | *Getter* | get_stream_peer() | +----------+------------------------+ The wrapped :ref:`StreamPeer` object. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`