Changeset 34558 in vbox for trunk/src/VBox/HostServices/auth/simple
- Timestamp:
- Dec 1, 2010 10:56:44 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68349
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/simple/VBoxAuthSimple.cpp
r33294 r34558 51 51 52 52 FILE *f = fopen(VRDPAUTH_DEBUG_FILE_NAME, "ab"); 53 fprintf(f, "%s", buffer); 54 fclose(f); 53 if (f) 54 { 55 fprintf(f, "%s", buffer); 56 fclose(f); 57 } 55 58 56 59 va_end (va); … … 59 62 60 63 RT_C_DECLS_BEGIN 61 DECLEXPORT(VRDPAuthResult) VRDPAUTHCALL VRDPAuth2(PVRDPAUTHUUID pUuid, 62 VRDPAuthGuestJudgement guestJudgement, 63 const char *szUser, 64 const char *szPassword, 65 const char *szDomain, 66 int fLogon, 67 unsigned clientId) 64 DECLEXPORT(AuthResult) AUTHCALL AuthEntry(const char *szCaller, 65 PAUTHUUID pUuid, 66 AuthGuestJudgement guestJudgement, 67 const char *szUser, 68 const char *szPassword, 69 const char *szDomain, 70 int fLogon, 71 unsigned clientId) 68 72 { 69 73 /* default is failed */ 70 VRDPAuthResult result = VRDPAuthAccessDenied;74 AuthResult result = AuthResultAccessDenied; 71 75 72 76 /* only interested in logon */ … … 117 121 118 122 if (password == pszDigest) 119 result = VRDPAuthAccessGranted;123 result = AuthResultAccessGranted; 120 124 } 121 125 } … … 126 130 127 131 /* Verify the function prototype. */ 128 static P VRDPAUTHENTRY2 gpfnAuthEntry = VRDPAuth2;132 static PAUTHENTRY3 gpfnAuthEntry = AuthEntry;
Note:
See TracChangeset
for help on using the changeset viewer.