1274b6fccSaliguori /* 2274b6fccSaliguori * QEMU VNC display driver 3274b6fccSaliguori * 4274b6fccSaliguori * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws> 5274b6fccSaliguori * Copyright (C) 2006 Fabrice Bellard 6274b6fccSaliguori * Copyright (C) 2009 Red Hat, Inc 7274b6fccSaliguori * 8274b6fccSaliguori * Permission is hereby granted, free of charge, to any person obtaining a copy 9274b6fccSaliguori * of this software and associated documentation files (the "Software"), to deal 10274b6fccSaliguori * in the Software without restriction, including without limitation the rights 11274b6fccSaliguori * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12274b6fccSaliguori * copies of the Software, and to permit persons to whom the Software is 13274b6fccSaliguori * furnished to do so, subject to the following conditions: 14274b6fccSaliguori * 15274b6fccSaliguori * The above copyright notice and this permission notice shall be included in 16274b6fccSaliguori * all copies or substantial portions of the Software. 17274b6fccSaliguori * 18274b6fccSaliguori * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19274b6fccSaliguori * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20274b6fccSaliguori * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21274b6fccSaliguori * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22274b6fccSaliguori * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23274b6fccSaliguori * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24274b6fccSaliguori * THE SOFTWARE. 25274b6fccSaliguori */ 26274b6fccSaliguori 27*2a6a4076SMarkus Armbruster #ifndef QEMU_VNC_AUTH_VENCRYPT_H 28*2a6a4076SMarkus Armbruster #define QEMU_VNC_AUTH_VENCRYPT_H 29274b6fccSaliguori 30274b6fccSaliguori void start_auth_vencrypt(VncState *vs); 31274b6fccSaliguori 32*2a6a4076SMarkus Armbruster #endif /* QEMU_VNC_AUTH_VENCRYPT_H */ 33