VirtualBox

Ignore:
Timestamp:
Dec 1, 2010 10:56:44 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
68349
Message:

Updated VBox authentication library interface, removed references to VRDP.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/auth/simple/VBoxAuthSimple.cpp

    r33294 r34558  
    5151
    5252    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    }
    5558
    5659    va_end (va);
     
    5962
    6063RT_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)
     64DECLEXPORT(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)
    6872{
    6973    /* default is failed */
    70     VRDPAuthResult result = VRDPAuthAccessDenied;
     74    AuthResult result = AuthResultAccessDenied;
    7175
    7276    /* only interested in logon */
     
    117121
    118122            if (password == pszDigest)
    119                 result = VRDPAuthAccessGranted;
     123                result = AuthResultAccessGranted;
    120124        }
    121125    }
     
    126130
    127131/* Verify the function prototype. */
    128 static PVRDPAUTHENTRY2 gpfnAuthEntry = VRDPAuth2;
     132static PAUTHENTRY3 gpfnAuthEntry = AuthEntry;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette