summaryrefslogtreecommitdiffstats
path: root/webclients/novnc/vendor/pako/lib/zlib/zstream.js
diff options
context:
space:
mode:
Diffstat (limited to 'webclients/novnc/vendor/pako/lib/zlib/zstream.js')
-rw-r--r--webclients/novnc/vendor/pako/lib/zlib/zstream.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/webclients/novnc/vendor/pako/lib/zlib/zstream.js b/webclients/novnc/vendor/pako/lib/zlib/zstream.js
new file mode 100644
index 0000000..e7e674e
--- /dev/null
+++ b/webclients/novnc/vendor/pako/lib/zlib/zstream.js
@@ -0,0 +1,24 @@
+export default function ZStream() {
+ /* next input byte */
+ this.input = null; // JS specific, because we have no pointers
+ this.next_in = 0;
+ /* number of bytes available at input */
+ this.avail_in = 0;
+ /* total number of input bytes read so far */
+ this.total_in = 0;
+ /* next output byte should be put there */
+ this.output = null; // JS specific, because we have no pointers
+ this.next_out = 0;
+ /* remaining free space at output */
+ this.avail_out = 0;
+ /* total number of bytes output so far */
+ this.total_out = 0;
+ /* last error message, NULL if no error */
+ this.msg = ''/*Z_NULL*/;
+ /* not visible by applications */
+ this.state = null;
+ /* best guess about the data type: binary or text */
+ this.data_type = 2/*Z_UNKNOWN*/;
+ /* adler32 value of the uncompressed data */
+ this.adler = 0;
+}