Searched refs:inRemoteAddress (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KClientCompat/
H A DKClientCompat.h58 /* * KClient 1.9 deprecated API * * $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KClientCompat/KClientCompat.h,v 1.4 2005/01/10 19:17:31 snsimon Exp $ */ #ifndef __KCLIENTCOMPAT__ #define __KCLIENTCOMPAT__ /* Constants */ /* Error codes, only listing the ones actually returned by the library */ enum { cKrbMapDoesntExist = -1020, /* tried to access a map that doesn't exist (index too large, or criteria doesn't match anything) */ cKrbSessDoesntExist = -1019, /* tried to access a session that doesn't exist */ cKrbCredsDontExist = -1018, /* tried to access credentials that don't exist */ cKrbUserCancelled = -1016, /* user cancelled a log in operation */ cKrbConfigurationErr = -1015, /* Kerberos Preference file is not configured properly */ cKrbServerRejected = -1014, /* A server rejected our ticket */ cKrbServerImposter = -1013, /* Server appears to be a phoney */ cKrbServerRespIncomplete = -1012, /* Server response is not complete */ cKrbNotLoggedIn = -1011, /* Returned by cKrbGetUserName if user is not logged in */ cKrbAppInBkgnd = -1008, /* driver won't put up password dialog when in background */ cKrbInvalidSession = -1007, /* invalid structure passed to KClient/KServer routine */ cKrbKerberosErrBlock = -20000 /* start of block of 256 kerberos error numbers */ }; #ifndef rez #if PRAGMA_ONCE #pragma once #endif /* PRAGMA_ONCE */ #include <Kerberos4/Kerberos4.h> #include <KClient/KClientTypes.h> #ifdef __cplusplus extern "C" { #endif typedef KClientSession KClientSessionInfo; enum { KClientLoggedIn, KClientNotLoggedIn }; OSErr KClientVersionCompat ( SInt16* outMajorVersion, SInt16* outMinorVersion, char* outVersionString); OSErr KClientNewSessionCompat ( KClientSessionInfo* inSession, UInt32 inLocalAddress, UInt16 inLocalPort, UInt32 inRemoteAddress, UInt16 inRemotePort); OSErr KClientDisposeSessionCompat ( KClientSessionInfo* inSession); OSErr KClientGetTicketForServiceCompat ( KClientSessionInfo* inSession, char* inService, void* inBuffer, UInt32* outBufferLength); OSErr KClientGetTicketForServiceWithChecksumCompat ( KClientSessionInfo* inSession, UInt32 inChecksum, char* inService, void* inBuffer, UInt32* outBufferLength); OSErr KClientLoginCompat ( KClientSessionInfo* inSession, KClientKey* outPrivateKey); OSErr KClientPasswordLoginCompat ( KClientSessionInfo* inSession, char* inPassword, KClientKey* outPrivateKey); OSErr KClientLogoutCompat (void); SInt16 KClientStatusCompat (void); OSErr KClientGetSessionKeyCompat ( KClientSessionInfo* inSession, KClientKey* outSessionKey); OSErr KClientEncryptCompat ( KClientSessionInfo* inSession, void* inPlainBuffer, UInt32 inPlainBufferLength, void* outEncryptedBuffer, UInt32* ioEncryptedBufferLength); OSErr KClientDecryptCompat ( KClientSessionInfo* inSession, void* inEncryptedBuffer, UInt32 inEncryptedBufferLength, UInt32* outPlainBufferOffset, UInt32* outPlainBufferLength); OSErr KClientProtectIntegrityCompat ( KClientSessionInfo* inSession, void* inPlainBuffer, UInt32 inPlainBufferLength, void* outProtectedBuffer, UInt32* ioProtectedBufferLength); OSErr KClientVerifyIntegrityCompat ( KClientSessionInfo* inSession, void* inProtectedBuffer, UInt32 inProtectedBufferLength, UInt32* outPlainBufferOffset, UInt32* outPlainBufferLength); OSErr KServerNewSessionCompat ( KClientSessionInfo* inSession, char* inService, UInt32 inLocalAddress, UInt16 inLocalPort, UInt32 inRemoteAddress, UInt16 inRemotePort); OSErr KServerVerifyTicketCompat ( KClientSessionInfo* inSession, (…)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KClient/
H A DKClient.h120 /* * KClient 3.0 API declarations * See KClient30-API.html * * $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KClient/KClient.h,v 1.4 2005/01/10 19:17:31 snsimon Exp $ */ #ifndef __KCLIENT__ #define __KCLIENT__ /* Constants */ enum { /* No error */ kcNoError = 0, /* General runtime errors */ kcErrNoMemory = 23000, kcErrBadParam, /* Various invalid structures */ kcErrInvalidSession = 23010, kcErrInvalidPrincipal, kcErrInvalidAddress, kcErrInvalidFile, /* Missing required settings in the session */ kcErrNoClientPrincipal = 23020, kcErrNoServerPrincipal, kcErrNoLocalAddress, kcErrNoRemoteAddress, kcErrNoSessionKey, kcErrNoServiceKey, kcErrNoChecksum, kcErrNotLoggedIn = 23030, kcErrUserCancelled, kcErrIncorrectPassword, kcErrBufferTooSmall = 23040, kcErrKeyFileAccess, kcErrFileNotFound, kcErrInvalidPreferences, kcErrChecksumMismatch, kcFirstKerberosError = 20000, kcLastKerberosError = kcFirstKerberosError + 256 }; #ifndef rez #include <KerberosSupport/KerberosSupport.h> #include <CredentialsCache/CredentialsCache.h> #include <KerberosProfile/KerberosProfile.h> #include <KerberosDES/KerberosDES.h> #include <KClient/KClientTypes.h> #if TARGET_API_MAC_OSX && TARGET_API_MAC_CARBON #include <CoreServices/CoreServices.h> #elif TARGET_API_MAC_OS8 || TARGET_API_MAC_CARBON #include <Files.h> #else #error "Unknown OS" #endif #ifdef __cplusplus extern "C" { #endif /* Functions */ OSStatus KClientGetVersion ( UInt16* outMajorVersion, UInt16* outMinorVersion, const char** outVersionString); /* Initialization / destruction */ OSStatus KClientNewClientSession ( KClientSession* outSession); OSStatus KClientNewServerSession ( KClientSession* inSession, KClientPrincipal inService); OSStatus KClientDisposeSession ( KClientSession inSession); /* Accessing session properties */ OSStatus KClientGetClientPrincipal ( KClientSession inSession, KClientPrincipal* outPrincipal); OSStatus KClientSetClientPrincipal ( KClientSession inSession, KClientPrincipal inPrincipal); OSStatus KClientGetServerPrincipal ( KClientSession inSession, KClientPrincipal* outPrincipal); OSStatus KClientSetServerPrincipal ( KClientSession inSession, KClientPrincipal inPrincipal); OSStatus KClientGetLocalAddress ( KClientSession inSession, KClientAddress* outLocalAddress); OSStatus KClientSetLocalAddress ( KClientSession inSession, const KClientAddress* inLocalAddress); OSStatus KClientGetRemoteAddress ( KClientSession inSession, KClientAddress* outRemoteAddress); OSStatus KClientSetRemoteAddress ( KClientSession inSession, const KClientAddress* inRemoteAddress); OSStatus KClientGetSessionKey ( KClientSession inSession, KClientKey* outKey); OSStatu (…)
/macosx-10.9.5/MITKerberosShim-62.1/
H A DKrb4DeprecatedAPIs.c672 UInt32 inRemoteAddress, UInt16 inRemotePort)
762 UInt32 inRemoteAddress, UInt16 inRemotePort)
886 OSStatus KClientSetRemoteAddress (KClientSession inSession, const KClientAddress *inRemoteAddress) argument
670 KClientNewSessionCompat(KClientSessionInfo *inSession, UInt32 inLocalAddress, UInt16 inLocalPort, UInt32 inRemoteAddress, UInt16 inRemotePort) argument
760 KServerNewSessionCompat(KClientSessionInfo *inSession, char *inService, UInt32 inLocalAddress, UInt16 inLocalPort, UInt32 inRemoteAddress, UInt16 inRemotePort) argument

Completed in 85 milliseconds