-
-
Notifications
You must be signed in to change notification settings - Fork 549
Adding support for ARD AuthType 33/35/36 #698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 9 commits
ab58000
6ebd9d4
57b87bb
687954c
643bb4c
7f98dc0
b4a3b61
c80fc70
f0ca173
ce1308c
9b16bd1
b16271e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -300,7 +300,10 @@ typedef char rfbProtocolVersionMsg[13]; /* allow extra byte for null */ | |
| #define rfbTLS 18 | ||
| #define rfbVeNCrypt 19 | ||
| #define rfbSASL 20 | ||
| #define rfbARD 30 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. don't change the API here.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have thought about this. The issue is that ARD is the name for the full protocol, but authType 30 is just one of several authentication methods. Since this PR aims to add support for more authentication types, I think maybe this adjustment is worth considering. |
||
| #define rfbARDAuthDH 30 | ||
Chapoly1305 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| #define rfbARDAuthRSASRP 33 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add comments here what these are |
||
| #define rfbARDAuthKerberosGSSAPI 35 | ||
| #define rfbARDAuthDirectSRP 36 | ||
| #define rfbUltraMSLogonI 0x70 /* UNIMPLEMENTED */ | ||
| #define rfbUltraMSLogonII 0x71 | ||
| #define rfbMSLogon 0xfffffffa | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please doc-comment these