Overview
Comment: | Don't require an IRCUser where it is not necessary. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b86913fa3e01b6e467cd05ed81fa54a3 |
User & Date: | js on 2012-02-16 17:27:50 |
Other Links: | manifest | tags |
Context
2012-03-21
| ||
10:53 | Update URL in copyright. check-in: 58f1f2d5c5 user: js tags: trunk | |
2012-02-16
| ||
17:27 | Don't require an IRCUser where it is not necessary. check-in: b86913fa3e user: js tags: trunk | |
14:56 | Handle closed connection. check-in: 4314708767 user: js tags: trunk | |
Changes
Modified src/IRCConnection.h from [2dd5077513] to [f1fa07458f].
︙ | ︙ | |||
97 98 99 100 101 102 103 | - (void)joinChannel: (OFString*)channelName; - (void)leaveChannel: (IRCChannel*)channel; - (void)leaveChannel: (IRCChannel*)channel withReason: (OFString*)reason; - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel; - (void)sendMessage: (OFString*)msg | | | | | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | - (void)joinChannel: (OFString*)channelName; - (void)leaveChannel: (IRCChannel*)channel; - (void)leaveChannel: (IRCChannel*)channel withReason: (OFString*)reason; - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel; - (void)sendMessage: (OFString*)msg toUser: (OFString*)user; - (void)sendNotice: (OFString*)notice toUser: (OFString*)user; - (void)sendNotice: (OFString*)notice toChannel: (IRCChannel*)channel; - (void)kickUser: (OFString*)user fromChannel: (IRCChannel*)channel withReason: (OFString*)reason; - (void)changeNicknameTo: (OFString*)nickname; - (void)process; - (void)handleConnection; @end |
Modified src/IRCConnection.m from [20a6c839f4] to [fa19dc10f5].
︙ | ︙ | |||
129 130 131 132 133 134 135 | - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel { [self sendLineWithFormat: @"PRIVMSG %@ :%@", channel.name, msg]; } - (void)sendMessage: (OFString*)msg | | | | | | | | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel { [self sendLineWithFormat: @"PRIVMSG %@ :%@", channel.name, msg]; } - (void)sendMessage: (OFString*)msg toUser: (OFString*)user { [self sendLineWithFormat: @"PRIVMSG %@ :%@", user, msg]; } - (void)sendNotice: (OFString*)notice toUser: (OFString*)user { [self sendLineWithFormat: @"NOTICE %@ :%@", user, notice]; } - (void)sendNotice: (OFString*)notice toChannel: (IRCChannel*)channel { [self sendLineWithFormat: @"NOTICE %@ :%@", channel.name, notice]; } - (void)kickUser: (OFString*)user fromChannel: (IRCChannel*)channel withReason: (OFString*)reason { [self sendLineWithFormat: @"KICK %@ %@ :%@", channel.name, user, reason]; } - (void)changeNicknameTo: (OFString*)nickname_ { [self sendLineWithFormat: @"NICK %@", nickname_]; } |
︙ | ︙ |