121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
+
+
+
+
+
+
+
+
+
+
+
+
|
arguments: args] autorelease];
va_end(args);
[self sendLine: line];
[pool release];
}
- (void)sendMessage: (OFString*)msg
toChannel: (IRCChannel*)channel
{
[self sendLineWithFormat: @"PRIVMSG %@ :%@", channel.name, msg];
}
- (void)sendMessage: (OFString*)msg
toUser: (IRCUser*)user
{
[self sendLineWithFormat: @"PRIVMSG %@ :%@", user.nickname, msg];
}
- (void)handleConnection
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFString *line;
OFArray *split;
|