diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-11-18 20:22:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-18 20:22:15 +0100 |
commit | cfdbb94038e76ff002e3d68dc6b1ca0df2606ef6 (patch) | |
tree | 4a965c5899ccbbdc77a9d9b473faa813339ca782 /client_examples | |
parent | aa8a1aa76880ffb8f23b98d0dbe35988b2609877 (diff) | |
parent | 5f9a07d7e1613dbccd5a27e845dbb8a7f2a27b2e (diff) | |
download | libtdevnc-cfdbb94038e76ff002e3d68dc6b1ca0df2606ef6.tar.gz libtdevnc-cfdbb94038e76ff002e3d68dc6b1ca0df2606ef6.zip |
Merge pull request #263 from veyon/custom-auth-handlers
LibVNCClient: add support for custom auth handlers
Diffstat (limited to 'client_examples')
-rw-r--r-- | client_examples/backchannel.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client_examples/backchannel.c b/client_examples/backchannel.c index 04d154e..a7db9a0 100644 --- a/client_examples/backchannel.c +++ b/client_examples/backchannel.c @@ -71,7 +71,9 @@ static rfbClientProtocolExtension backChannel = { backChannelEncodings, /* encodings */ NULL, /* handleEncoding */ handleBackChannelMessage, /* handleMessage */ - NULL /* next extension */ + NULL, /* next extension */ + NULL, /* securityTypes */ + NULL /* handleAuthentication */ }; int |