31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#import <ObjFW/OFInvalidEncodingException.h>
#import "IRCConnection.h"
#import "IRCUser.h"
#import "IRCChannel.h"
@implementation IRCConnection
@synthesize server, port, nickname, username, realname, delegate;
- init
{
self = [super init];
@try {
channels = [[OFMutableDictionary alloc] init];
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#import <ObjFW/OFInvalidEncodingException.h>
#import "IRCConnection.h"
#import "IRCUser.h"
#import "IRCChannel.h"
@implementation IRCConnection
@synthesize server, port, nickname, username, realname, delegate, sock;
- init
{
self = [super init];
@try {
channels = [[OFMutableDictionary alloc] init];
|