From d350dbe0bffe51bc559620b911dfbcc3c2e5d7b1 Mon Sep 17 00:00:00 2001 From: Jovi Hsu Date: Mon, 8 Nov 2021 21:37:12 +0800 Subject: [PATCH] vnc init --- frontend/src/protocal/mod.rs | 1 + frontend/src/protocal/vnc.rs | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 frontend/src/protocal/mod.rs create mode 100644 frontend/src/protocal/vnc.rs diff --git a/frontend/src/protocal/mod.rs b/frontend/src/protocal/mod.rs new file mode 100644 index 0000000..7391015 --- /dev/null +++ b/frontend/src/protocal/mod.rs @@ -0,0 +1 @@ +pub mod vnc; diff --git a/frontend/src/protocal/vnc.rs b/frontend/src/protocal/vnc.rs new file mode 100644 index 0000000..d88a901 --- /dev/null +++ b/frontend/src/protocal/vnc.rs @@ -0,0 +1,5 @@ +pub struct VncHandler { + wsFrame: Vec, + imageFrame: Vec, + outputFrame: Vec, +}