19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
-
-
-
-
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#import "XMPPAuthenticator.h"
@implementation XMPPAuthenticator
@synthesize authzid;
@synthesize authcid;
@synthesize password;
- initWithAuthcid: (OFString*)authcid_
password: (OFString*)password_
{
return [self initWithAuthzid: nil
authcid: authcid_
password: password_];
}
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
{
[authzid release];
[authcid release];
[password release];
[super dealloc];
}
- (void)setAuthzid: (OFString*)authzid_
{
OFString *old = authzid;
authzid = [authzid_ copy];
[old release];
}
- (OFString*)authzid
{
return [[authzid copy] autorelease];
}
- (void)setAuthcid: (OFString*)authcid_
{
OFString *old = authcid;
authcid = [authcid_ copy];
[old release];
}
- (OFString*)authcid
{
return [[authcid copy] autorelease];
}
- (void)setPassword: (OFString*)password_
{
OFString *old = password;
password = [password_ copy];
[old release];
}
- (OFString*)password
{
return [[password copy] autorelease];
}
- (OFDataArray*)clientFirstMessage
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
|