Abstraction and base class for stream-based protocols. StreamPeer is an abstraction and base class for stream-based protocols (such as TCP). It provides an API for sending and receiving data through streams as raw data or strings. [b]Note:[/b] When exporting to Android, make sure to enable the [code]INTERNET[/code] 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. Gets a signed 16-bit value from the stream. Gets a signed 32-bit value from the stream. Gets a signed 64-bit value from the stream. Gets a signed byte from the stream. Returns the number of bytes this [StreamPeer] has available. Returns a chunk data with the received bytes. The number of bytes to be received can be requested in the [param bytes] argument. If not enough bytes are available, the function will block until the desired amount is received. This function returns two values, an [enum Error] code and a data array. Gets a double-precision float from the stream. Gets a single-precision float from the stream. Returns a chunk data with the received bytes. The number of bytes to be received can be requested in the "bytes" argument. If not enough bytes are available, the function will return how many were actually received. This function returns two values, an [enum Error] code, and a data array. Gets an ASCII string with byte-length [param bytes] from the stream. If [param bytes] is negative (default) the length will be read from the stream using the reverse process of [method put_string]. Gets an unsigned 16-bit value from the stream. Gets an unsigned 32-bit value from the stream. Gets an unsigned 64-bit value from the stream. Gets an unsigned byte from the stream. Gets an UTF-8 string with byte-length [param bytes] from the stream (this decodes the string sent as UTF-8). If [param bytes] is negative (default) the length will be read from the stream using the reverse process of [method put_utf8_string]. Gets a Variant from the stream. If [param allow_objects] is [code]true[/code], decoding objects is allowed. Internally, this uses the same decoding mechanism as the [method @GlobalScope.bytes_to_var] method. [b]Warning:[/b] 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. Puts a signed 16-bit value into the stream. Puts a signed 32-bit value into the stream. Puts a signed 64-bit value into the stream. Puts a signed byte into the stream. Sends a chunk of data through the connection, blocking if necessary until the data is done sending. This function returns an [enum Error] code. Puts a double-precision float into the stream. Puts a single-precision float into the stream. Sends a chunk of data through the connection. If all the data could not be sent at once, only part of it will. This function returns two values, an [enum Error] code and an integer, describing how much data was actually sent. Puts a zero-terminated ASCII string into the stream prepended by a 32-bit unsigned integer representing its size. [b]Note:[/b] To put an ASCII string without prepending its size, you can use [method put_data]: [codeblocks] [gdscript] put_data("Hello world".to_ascii_buffer()) [/gdscript] [csharp] PutData("Hello World".ToAsciiBuffer()); [/csharp] [/codeblocks] Puts an unsigned 16-bit value into the stream. Puts an unsigned 32-bit value into the stream. Puts an unsigned 64-bit value into the stream. Puts an unsigned byte into the stream. Puts a zero-terminated UTF-8 string into the stream prepended by a 32 bits unsigned integer representing its size. [b]Note:[/b] To put an UTF-8 string without prepending its size, you can use [method put_data]: [codeblocks] [gdscript] put_data("Hello world".to_utf8_buffer()) [/gdscript] [csharp] PutData("Hello World".ToUtf8Buffer()); [/csharp] [/codeblocks] Puts a Variant into the stream. If [param full_objects] is [code]true[/code] encoding objects is allowed (and can potentially include code). Internally, this uses the same encoding mechanism as the [method @GlobalScope.var_to_bytes] method. If [code]true[/code], this [StreamPeer] will using big-endian format for encoding and decoding.