571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
|
- (BOOL)socket: (OFTCPSocket*)socket
didReceiveISO88591Line: (OFString*)line
exception: (OFException*)exception
{
if (line != nil) {
[self IRC_processLine: line];
[socket asyncReadLineWithTarget: self
selector: @selector(connection:
didReceiveLine:
exception:)];
}
return NO;
}
|
|
|
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
|
- (BOOL)socket: (OFTCPSocket*)socket
didReceiveISO88591Line: (OFString*)line
exception: (OFException*)exception
{
if (line != nil) {
[self IRC_processLine: line];
[socket asyncReadLineWithTarget: self
selector: @selector(socket:
didReceiveLine:
exception:)];
}
return NO;
}
|