00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class Account, AuthScheme;
00010
00011 @interface SASLAuthenticator : NSObject
00012 {
00013 void *_context;
00014 AuthScheme *_authScheme;
00015 Account *_account;
00016 int _authenticationState;
00017 }
00018
00019 - (id)initWithAuthScheme:(id)fp8 account:(id)fp12 connection:(id)fp16;
00020 - (void)dealloc;
00021 - (id)authScheme;
00022 - (id)account;
00023 - (id)saslName;
00024 - (id)responseForServerData:(id)fp8;
00025 - (int)authenticationState;
00026 - (void)setAuthenticationState:(int)fp8;
00027 - (BOOL)justSentPlainTextPassword;
00028 - (id)securityLayer;
00029 - (id)localAddress;
00030 - (id)remoteAddress;
00031 - (BOOL)isUsingSSL;
00032 - (BOOL)base64EncodeResponseData;
00033 - (BOOL)couldRetry;
00034
00035 @end
00036