diff options
author | steven_carr <steven_carr> | 2006-05-15 18:17:31 +0000 |
---|---|---|
committer | steven_carr <steven_carr> | 2006-05-15 18:17:31 +0000 |
commit | 1c3af68549c544de065ceedec518449ee8cff49d (patch) | |
tree | 0c5638ca7dc34fa2101d7b7e3280b387ee07f1a6 /rfb | |
parent | ccdbe8f3256c3c776a1cc1a0517a38437b9e2c65 (diff) | |
download | libtdevnc-1c3af68549c544de065ceedec518449ee8cff49d.tar.gz libtdevnc-1c3af68549c544de065ceedec518449ee8cff49d.zip |
Default to RFB 3.8, add command line option to specify the RFB version.
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfb.h | 3 | ||||
-rw-r--r-- | rfb/rfbproto.h | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -348,6 +348,9 @@ typedef struct _rfbScreenInfo /* What does the server tell the new clients which version it supports */ int protocolMajorVersion; int protocolMinorVersion; + + /* command line authorization of file transfers */ + rfbBool permitFileTransfer; } rfbScreenInfo, *rfbScreenInfoPtr; diff --git a/rfb/rfbproto.h b/rfb/rfbproto.h index 672d0d7..4d5812a 100644 --- a/rfb/rfbproto.h +++ b/rfb/rfbproto.h @@ -218,7 +218,7 @@ typedef struct { #define rfbProtocolVersionFormat "RFB %03d.%03d\n" #define rfbProtocolMajorVersion 3 -#define rfbProtocolMinorVersion 6 +#define rfbProtocolMinorVersion 8 /* UltraVNC Viewer examines rfbProtocolMinorVersion number (4, and 6) * to identify if the server supports File Transfer */ |