ObjXMPP  Diff

Differences From Artifact [b0ffeb590a]:

To Artifact [fbee9ca5ca]:


25
26
27
28
29
30
31
32
33


34
35
36
37
38
39
40
41
42
43
44
45

46
47
48
49
50
51
52
25
26
27
28
29
30
31


32
33
34
35
36
37
38
39
40
41
42
43
44

45
46
47
48
49
50
51
52







-
-
+
+











-
+








@implementation XMPPStreamManagement
- initWithConnection: (XMPPConnection*)connection_
{
	self = [super init];

	@try {
		connection = connection_;
		[connection addDelegate: self];
		_connection = connection_;
		[_connection addDelegate: self];
		receivedCount = 0;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}

- (void)dealloc
{
	[connection removeDelegate: self];
	[_connection removeDelegate: self];

	[super dealloc];
}

- (void)connection: (XMPPConnection*)connection_
 didReceiveElement: (OFXMLElement*)element
{