Differences From Artifact [8c6dc2da09]:
- File src/XMPPConnection.m — part of check-in [423434d147] at 2011-03-31 12:25:41 on branch trunk — Adjust to newest ObjFW and greatly improve XML handling. (user: js, size: 16218) [annotate] [blame] [check-ins using]
To Artifact [9566d5c99c]:
- File src/XMPPConnection.m — part of check-in [6c757fb3c0] at 2011-04-01 01:14:19 on branch trunk — Add convenience header and method. (user: js, size: 16279) [annotate] [blame] [check-ins using]
︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + + + | #import "XMPPMessage.h" #import "XMPPPresence.h" #import "XMPPRoster.h" #import "XMPPRosterItem.h" #import "XMPPExceptions.h" @implementation XMPPConnection + connection { return [[[self alloc] init] autorelease]; } - init { self = [super init]; @try { sock = [[OFTCPSocket alloc] init]; parser = [[OFXMLParser alloc] init]; |
︙ |