Keep track of users in a channel.

FossilOrigin-Name: 5f51d55981a74610c7d36038d540cc689b15d41194b00b2e8b0c7428bf102341
This commit is contained in:
Jonathan Schleifer 2011-10-05 19:40:33 +00:00
parent 77e2dba178
commit 318f4a2c1b
5 changed files with 83 additions and 1 deletions

View file

@ -132,4 +132,10 @@ OF_APPLICATION_DELEGATE(TestApp)
{
of_log(@"NOTICE: [%@] %@: %@", channel, user, notice);
}
- (void)connection: (IRCConnection*)connection
didReceiveNamesForChannel: (IRCChannel*)channel
{
of_log(@"Users in %@: %@", channel, channel.users);
}
@end