128
129
130
131
132
133
134
135
|
- (void)connection: (IRCConnection*)connection
didReceiveNotice: (OFString*)notice
fromUser: (IRCUser*)user
inChannel: (IRCChannel*)channel
{
of_log(@"NOTICE: [%@] %@: %@", channel, user, notice);
}
@end
|
>
>
>
>
>
>
|
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
- (void)connection: (IRCConnection*)connection
didReceiveNotice: (OFString*)notice
fromUser: (IRCUser*)user
inChannel: (IRCChannel*)channel
{
of_log(@"NOTICE: [%@] %@: %@", channel, user, notice);
}
- (void)connection: (IRCConnection*)connection
didReceiveNamesForChannel: (IRCChannel*)channel
{
of_log(@"Users in %@: %@", channel, channel.users);
}
@end
|