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
53
|
@class OFTCPSocket;
@class IRCConnection;
@class IRCUser;
@class IRCChannel;
@protocol IRCConnectionDelegate
@optional
- (void)connection: (IRCConnection*)conn
didReceiveLine: (OFString*)line;
- (void)connection: (IRCConnection*)conn
didSendLine: (OFString*)line;
- (void)connectionWasEstablished: (IRCConnection*)conn;
- (void)connection: (IRCConnection*)conn
didSeeUser: (IRCUser*)user
joinChannel: (IRCChannel*)channel;
- (void)connection: (IRCConnection*)conn
didReceiveMessage: (OFString*)msg
fromUser: (IRCUser*)user
inChannel: (IRCChannel*)channel;
- (void)connection: (IRCConnection*)conn
didReceivePrivateMessage: (OFString*)msg
fromUser: (IRCUser*)user;
@end
@interface IRCConnection: OFObject
{
OFTCPSocket *sock;
|
|
|
|
|
>
>
>
>
|
|
|
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
53
54
55
56
57
|
@class OFTCPSocket;
@class IRCConnection;
@class IRCUser;
@class IRCChannel;
@protocol IRCConnectionDelegate
@optional
- (void)connection: (IRCConnection*)connection
didReceiveLine: (OFString*)line;
- (void)connection: (IRCConnection*)connection
didSendLine: (OFString*)line;
- (void)connectionWasEstablished: (IRCConnection*)connection;
- (void)connection: (IRCConnection*)connection
didSeeUser: (IRCUser*)user
joinChannel: (IRCChannel*)channel;
- (void)connection: (IRCConnection*)connection
didSeeUser: (IRCUser*)user
leaveChannel: (IRCChannel*)channel
withReason: (OFString*)reason;
- (void)connection: (IRCConnection*)connection
didReceiveMessage: (OFString*)msg
fromUser: (IRCUser*)user
inChannel: (IRCChannel*)channel;
- (void)connection: (IRCConnection*)connection
didReceivePrivateMessage: (OFString*)msg
fromUser: (IRCUser*)user;
@end
@interface IRCConnection: OFObject
{
OFTCPSocket *sock;
|