vnc-auth-sasl.h (b85a4ec8a7ce348f3f385a53df4e418f2f54c182) | vnc-auth-sasl.h (1de7afc984b49af164e2619e6850b9732b173b34) |
---|---|
1/* 2 * QEMU VNC display driver: SASL auth protocol 3 * 4 * Copyright (C) 2009 Red Hat, Inc 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 18 unchanged lines hidden (view full) --- 27#define __QEMU_VNC_AUTH_SASL_H__ 28 29 30#include <sasl/sasl.h> 31 32typedef struct VncStateSASL VncStateSASL; 33typedef struct VncDisplaySASL VncDisplaySASL; 34 | 1/* 2 * QEMU VNC display driver: SASL auth protocol 3 * 4 * Copyright (C) 2009 Red Hat, Inc 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 18 unchanged lines hidden (view full) --- 27#define __QEMU_VNC_AUTH_SASL_H__ 28 29 30#include <sasl/sasl.h> 31 32typedef struct VncStateSASL VncStateSASL; 33typedef struct VncDisplaySASL VncDisplaySASL; 34 |
35#include "acl.h" | 35#include "qemu/acl.h" |
36 37struct VncStateSASL { 38 sasl_conn_t *conn; 39 /* If we want to negotiate an SSF layer with client */ 40 bool wantSSF; 41 /* If we are now running the SSF layer */ 42 bool runSSF; 43 /* --- 31 unchanged lines hidden --- | 36 37struct VncStateSASL { 38 sasl_conn_t *conn; 39 /* If we want to negotiate an SSF layer with client */ 40 bool wantSSF; 41 /* If we are now running the SSF layer */ 42 bool runSSF; 43 /* --- 31 unchanged lines hidden --- |