summaryrefslogtreecommitdiff
path: root/vnc-auth-sasl.h
diff options
context:
space:
mode:
Diffstat (limited to 'vnc-auth-sasl.h')
-rw-r--r--vnc-auth-sasl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/vnc-auth-sasl.h b/vnc-auth-sasl.h
index a72973a26b..fd9b18a8fe 100644
--- a/vnc-auth-sasl.h
+++ b/vnc-auth-sasl.h
@@ -30,6 +30,9 @@
#include <sasl/sasl.h>
typedef struct VncStateSASL VncStateSASL;
+typedef struct VncDisplaySASL VncDisplaySASL;
+
+#include "acl.h"
struct VncStateSASL {
sasl_conn_t *conn;
@@ -56,6 +59,10 @@ struct VncStateSASL {
char *mechlist;
};
+struct VncDisplaySASL {
+ qemu_acl *acl;
+};
+
void vnc_sasl_client_cleanup(VncState *vs);
long vnc_client_read_sasl(VncState *vs);