summaryrefslogtreecommitdiffstats
path: root/doc/classes/StreamPeer.xml
diff options
context:
space:
mode:
authorYuri Sizov <11782833+YuriSizov@users.noreply.github.com>2023-02-10 20:04:16 +0300
committerGitHub <noreply@github.com>2023-02-10 20:04:16 +0300
commit5ca11230211acd597dc60bbf8424f8c6964c479a (patch)
tree6098726ad8dd8cc180ce2e0b458371f40a5d1eca /doc/classes/StreamPeer.xml
parentcd015d9ac9dd7fc46a8961b3fc68df313f71d3e8 (diff)
parentdc70ab5e2dddba2a39f8030ba02d5d13b4324231 (diff)
downloadredot-engine-5ca11230211acd597dc60bbf8424f8c6964c479a.tar.gz
Merge pull request #71572 from RedMser/docs-binary-variant
Document internal usage of `encode`/`decode_variant`
Diffstat (limited to 'doc/classes/StreamPeer.xml')
-rw-r--r--doc/classes/StreamPeer.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/StreamPeer.xml b/doc/classes/StreamPeer.xml
index 969cbac57d..9a70690122 100644
--- a/doc/classes/StreamPeer.xml
+++ b/doc/classes/StreamPeer.xml
@@ -109,6 +109,7 @@
<param index="0" name="allow_objects" type="bool" default="false" />
<description>
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.
</description>
</method>
@@ -234,6 +235,7 @@
<param index="1" name="full_objects" type="bool" default="false" />
<description>
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.
</description>
</method>
</methods>