mirror of
https://github.com/danbulant/node-x11
synced 2026-06-19 22:51:10 +00:00
hextile constants
This commit is contained in:
parent
9f8251c4a7
commit
7146135669
1 changed files with 17 additions and 0 deletions
|
|
@ -15,6 +15,12 @@ exports.serverMsgTypes = {
|
|||
cutText: 3,
|
||||
};
|
||||
|
||||
exports.versionstring = {
|
||||
V3_003: 'RFB 003.003\n',
|
||||
V3_007: 'RFB 003.007\n',
|
||||
V3_008: 'RFB 003.008\n'
|
||||
};
|
||||
|
||||
exports.encodings = {
|
||||
raw : 0,
|
||||
copyRect : 1,
|
||||
|
|
@ -25,6 +31,17 @@ exports.encodings = {
|
|||
pseudoDesktopSize : -223,
|
||||
};
|
||||
|
||||
exports.subEncodings = {
|
||||
};
|
||||
|
||||
exports.subEncodings.hextile = {
|
||||
raw: 1,
|
||||
backgroundSpecified: 2,
|
||||
foregroundSpecified: 4,
|
||||
anySubrects: 8,
|
||||
subrectsColored: 16
|
||||
}
|
||||
|
||||
exports.security = {
|
||||
None: 1,
|
||||
VNC: 2
|
||||
|
|
|
|||
Loading…
Reference in a new issue