Changeset 35943 in vbox for trunk/src/VBox/HostServices/auth/directoryservice
- Timestamp:
- Feb 11, 2011 1:04:47 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69996
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/directoryservice/directoryservice.cpp
r34563 r35943 1 1 /** @file 2 2 * 3 * VBox Remote Desktop Protocol: 4 * External Authentication Library: 3 * VirtualBox External Authentication Library: 5 4 * Mac OS X Authentication. This is based on 6 5 * http://developer.apple.com/mac/library/samplecode/CryptNoMore/ … … 8 7 9 8 /* 10 * Copyright (C) 2009-201 0Oracle Corporation9 * Copyright (C) 2009-2011 Oracle Corporation 11 10 * 12 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 258 257 259 258 RT_C_DECLS_BEGIN 260 DECLEXPORT(AuthResult) AUTHCALL VRDPAuth(PAUTHUUID pUuid, 261 AuthGuestJudgement guestJudgement, 262 const char *pszUser, 263 const char *pszPassword, 264 const char *pszDomain) 259 DECLEXPORT(AuthResult) AUTHCALL AuthEntry(const char *szCaller, 260 PAUTHUUID pUuid, 261 AuthGuestJudgement guestJudgement, 262 const char *szUser, 263 const char *szPassword, 264 const char *szDomain, 265 int fLogon, 266 unsigned clientId) 265 267 { 266 268 /* Validate input */ … … 270 272 /* Result to a default value */ 271 273 AuthResult result = AuthResultAccessDenied; 274 275 /* Only process logon requests. */ 276 if (!fLogon) 277 return result; /* Return value is ignored by the caller. */ 272 278 273 279 tDirStatus dsErr = eDSNoErr; … … 317 323 RT_C_DECLS_END 318 324 319 static PAUTHENTRY gpfnAuthEntry = VRDPAuth;320 325 static PAUTHENTRY3 gpfnAuthEntry = AuthEntry; 326
Note:
See TracChangeset
for help on using the changeset viewer.