diff options
author | dscho <dscho> | 2003-07-27 21:30:29 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-07-27 21:30:29 +0000 |
commit | a1ce2ac48f158d18c3e25a6131ab28f8f72cdf33 (patch) | |
tree | ac8e83ee94aedb01e41dbba49983ef3491506cf0 /rfb | |
parent | 1e60fc200aaab8ec302c3752eddab464b1adc2cc (diff) | |
download | libtdevnc-a1ce2ac48f158d18c3e25a6131ab28f8f72cdf33.tar.gz libtdevnc-a1ce2ac48f158d18c3e25a6131ab28f8f72cdf33.zip |
make vncauth usable also for upcoming libvncclient
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfb.h | 56 | ||||
-rw-r--r-- | rfb/rfbproto.h | 58 |
2 files changed, 58 insertions, 56 deletions
@@ -35,54 +35,12 @@ extern "C" #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <rfb/rfbconfig.h> -#undef VERSION -#include <rfb/rfbint.h> -#include <rfb/keysym.h> - -#ifdef HAVE_LIBZ -#include <zlib.h> -#endif - #include <rfb/rfbproto.h> #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#if defined(WIN32) -#define WORDS_BIGENDIAN -#undef Bool -#define Bool int -#include <sys/timeb.h> -#include <winsock.h> -#undef SOCKET -#define SOCKET int -#else -#define max(a,b) (((a)>(b))?(a):(b)) -#ifdef HAVE_SYS_TIME_H -#include <sys/time.h> -#endif -#ifdef HAVE_NETINET_IN_H -#include <netinet/in.h> -#endif -#define SOCKET int -#ifndef Bool -typedef int8_t Bool; -#undef FALSE -#define FALSE 0 -#undef TRUE -#define TRUE -1 -#endif -#endif - -typedef uint32_t KeySym; -typedef uint32_t Pixel; - -#ifndef INADDR_NONE -#define INADDR_NONE ((in_addr_t) 0xffffffff) -#endif - #ifdef HAVE_LIBPTHREAD #include <pthread.h> #if 0 /* debugging */ @@ -144,8 +102,6 @@ typedef uint32_t Pixel; #endif #endif -#define MAX_ENCODINGS 10 - struct _rfbClientRec; struct _rfbScreenInfo; struct rfbCursor; @@ -327,18 +283,6 @@ typedef void (*rfbTranslateFnType)(char *table, rfbPixelFormat *in, int width, int height); -/* - * vncauth.h - describes the functions provided by the vncauth library. - */ - -#define MAXPWLEN 8 -#define CHALLENGESIZE 16 - -extern int vncEncryptAndStorePasswd(char *passwd, char *fname); -extern char *vncDecryptPasswdFromFile(char *fname); -extern void vncRandomBytes(unsigned char *bytes); -extern void vncEncryptBytes(unsigned char *bytes, char *passwd); - /* region stuff */ struct sraRegion; diff --git a/rfb/rfbproto.h b/rfb/rfbproto.h index 9a64484..718b04f 100644 --- a/rfb/rfbproto.h +++ b/rfb/rfbproto.h @@ -47,6 +47,51 @@ */ +#include <rfb/rfbconfig.h> +#undef VERSION +#include <rfb/rfbint.h> +#include <rfb/keysym.h> + +#ifdef HAVE_LIBZ +#include <zlib.h> +#endif + + +#if defined(WIN32) +#define WORDS_BIGENDIAN +#undef Bool +#define Bool int +#include <sys/timeb.h> +#include <winsock.h> +#undef SOCKET +#define SOCKET int +#else +#define max(a,b) (((a)>(b))?(a):(b)) +#ifdef HAVE_SYS_TIME_H +#include <sys/time.h> +#endif +#ifdef HAVE_NETINET_IN_H +#include <netinet/in.h> +#endif +#define SOCKET int +#ifndef Bool +typedef int8_t Bool; +#undef FALSE +#define FALSE 0 +#undef TRUE +#define TRUE -1 +#endif +#endif + +typedef uint32_t KeySym; +typedef uint32_t Pixel; + +#ifndef INADDR_NONE +#define INADDR_NONE ((in_addr_t) 0xffffffff) +#endif + +#define MAX_ENCODINGS 20 + /***************************************************************************** * * Structures used in several messages @@ -941,4 +986,17 @@ typedef union { rfbClientCutTextMsg cct; } rfbClientToServerMsg; +/* + * vncauth.h - describes the functions provided by the vncauth library. + */ + +#define MAXPWLEN 8 +#define CHALLENGESIZE 16 + +extern int vncEncryptAndStorePasswd(char *passwd, char *fname); +extern char *vncDecryptPasswdFromFile(char *fname); +extern void vncRandomBytes(unsigned char *bytes); +extern void vncEncryptBytes(unsigned char *bytes, char *passwd); + + #endif |