ObjIRC  Check-in [fed4052de9]

Overview
Comment:Switch test network to OFTC
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: fed4052de94b0d81a2b4fbf7459ed0612546d0e782aba1a4f912570bce42496a
User & Date: js on 2024-05-04 21:34:26
Other Links: manifest | tags
Context
2024-05-04
21:35
Add "make check" Leaf check-in: 685fcf4c95 user: js tags: trunk
21:34
Switch test network to OFTC check-in: fed4052de9 user: js tags: trunk
21:30
Add ignore-glob check-in: 43c184497a user: js tags: trunk
Changes

Modified tests/tests.m from [4cec8aa082] to [d793b58622].

34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
OF_APPLICATION_DELEGATE(TestApp)

@implementation TestApp
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
	IRCConnection *connection = [[IRCConnection alloc] init];

	connection.server = @"irc.freenode.net";
	connection.nickname = @"ObjIRC";
	connection.username = @"ObjIRC";
	connection.realname = @"ObjIRC";
	connection.delegate = self;

	[connection connect];
}







|







34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
OF_APPLICATION_DELEGATE(TestApp)

@implementation TestApp
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
	IRCConnection *connection = [[IRCConnection alloc] init];

	connection.server = @"irc.oftc.net";
	connection.nickname = @"ObjIRC";
	connection.username = @"ObjIRC";
	connection.realname = @"ObjIRC";
	connection.delegate = self;

	[connection connect];
}