Use quote-includes for all local headers
parent
fcc6f737ea
commit
f1bba8e9bb
|
@ -18,8 +18,9 @@
|
||||||
|
|
||||||
#define OPEN_H264_MAX_CONTEXTS 64
|
#define OPEN_H264_MAX_CONTEXTS 64
|
||||||
|
|
||||||
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <rfb/rfbclient.h>
|
|
||||||
|
|
||||||
struct AVFrame;
|
struct AVFrame;
|
||||||
struct open_h264;
|
struct open_h264;
|
||||||
|
|
|
@ -32,14 +32,15 @@
|
||||||
* @file rfbclient.h
|
* @file rfbclient.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "rfb/rfbproto.h"
|
||||||
|
#include "rfb/keysym.h"
|
||||||
|
#include "rfb/threading.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <rfb/rfbproto.h>
|
|
||||||
#include <rfb/keysym.h>
|
|
||||||
#include <rfb/threading.h>
|
|
||||||
|
|
||||||
#ifdef LIBVNCSERVER_HAVE_SASL
|
#ifdef LIBVNCSERVER_HAVE_SASL
|
||||||
#include <sasl/sasl.h>
|
#include <sasl/sasl.h>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#ifdef LIBVNCSERVER_HAVE_SASL
|
#ifdef LIBVNCSERVER_HAVE_SASL
|
||||||
|
|
||||||
#include <rfb/rfbclient.h>
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Perform the SASL authentication process
|
* Perform the SASL authentication process
|
||||||
|
|
|
@ -16,11 +16,12 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <pixman.h>
|
#include <pixman.h>
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
#include <rfb/rfbclient.h>
|
|
||||||
|
|
||||||
#define VNC_CLIENT_MAX_AV_FRAMES 64
|
#define VNC_CLIENT_MAX_AV_FRAMES 64
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,7 @@
|
||||||
* RichCursor preudo-encodings).
|
* RichCursor preudo-encodings).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <rfb/rfbclient.h>
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
|
|
||||||
#define OPER_SAVE 0
|
#define OPER_SAVE 0
|
||||||
#define OPER_RESTORE 1
|
#define OPER_RESTORE 1
|
||||||
|
|
|
@ -15,12 +15,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "open-h264.h"
|
#include "open-h264.h"
|
||||||
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <rfb/rfbclient.h>
|
|
||||||
#include <libavcodec/avcodec.h>
|
#include <libavcodec/avcodec.h>
|
||||||
|
|
||||||
enum open_h264_flags {
|
enum open_h264_flags {
|
||||||
|
|
|
@ -17,13 +17,13 @@
|
||||||
* USA.
|
* USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "rfb/rfbclient.h"
|
||||||
|
#include "tls.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <gnutls/gnutls.h>
|
#include <gnutls/gnutls.h>
|
||||||
#include <gnutls/x509.h>
|
#include <gnutls/x509.h>
|
||||||
#include <rfb/rfbclient.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include "tls.h"
|
|
||||||
|
|
||||||
|
|
||||||
static const char *rfbTLSPriority = "NORMAL:+DHE-DSS:+RSA:+DHE-RSA:+SRP";
|
static const char *rfbTLSPriority = "NORMAL:+DHE-DSS:+RSA:+DHE-RSA:+SRP";
|
||||||
static const char *rfbAnonTLSPriority= "NORMAL:+ANON-DH";
|
static const char *rfbAnonTLSPriority= "NORMAL:+ANON-DH";
|
||||||
|
|
|
@ -17,10 +17,11 @@
|
||||||
* USA.
|
* USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <rfb/rfbclient.h>
|
#include "rfb/rfbclient.h"
|
||||||
#include <errno.h>
|
|
||||||
#include "tls.h"
|
#include "tls.h"
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
rfbBool HandleAnonTLSAuth(rfbClient* client)
|
rfbBool HandleAnonTLSAuth(rfbClient* client)
|
||||||
{
|
{
|
||||||
rfbClientLog("TLS is not supported.\n");
|
rfbClientLog("TLS is not supported.\n");
|
||||||
|
|
|
@ -18,8 +18,9 @@
|
||||||
* USA.
|
* USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "rfb/rfbclient.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <rfb/rfbclient.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
|
Loading…
Reference in New Issue