vnc.h (bc2429b9174ac2d3c56b7fd35884b0d89ec7fb02) | vnc.h (80e0c8c39b663cd44ea8d47efe256897b7102f50) |
---|---|
1/* 2 * QEMU VNC display driver 3 * 4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws> 5 * Copyright (C) 2006 Fabrice Bellard 6 * Copyright (C) 2009 Red Hat, Inc 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 130 unchanged lines hidden (view full) --- 139 struct VncSurface guest; /* guest visible surface (aka ds->surface) */ 140 DisplaySurface *server; /* vnc server surface */ 141 142 char *display; 143 char *password; 144 time_t expires; 145 int auth; 146 bool lossy; | 1/* 2 * QEMU VNC display driver 3 * 4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws> 5 * Copyright (C) 2006 Fabrice Bellard 6 * Copyright (C) 2009 Red Hat, Inc 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 130 unchanged lines hidden (view full) --- 139 struct VncSurface guest; /* guest visible surface (aka ds->surface) */ 140 DisplaySurface *server; /* vnc server surface */ 141 142 char *display; 143 char *password; 144 time_t expires; 145 int auth; 146 bool lossy; |
147 bool non_adaptive; |
|
147#ifdef CONFIG_VNC_TLS 148 int subauth; /* Used by VeNCrypt */ 149 VncDisplayTLS tls; 150#endif 151#ifdef CONFIG_VNC_SASL 152 VncDisplaySASL sasl; 153#endif 154}; --- 396 unchanged lines hidden --- | 148#ifdef CONFIG_VNC_TLS 149 int subauth; /* Used by VeNCrypt */ 150 VncDisplayTLS tls; 151#endif 152#ifdef CONFIG_VNC_SASL 153 VncDisplaySASL sasl; 154#endif 155}; --- 396 unchanged lines hidden --- |