MODE command: Always report channel creation time
Up to now when receiving a MODE command, ngIRCd only reported the channel creation time to clients that were members of the channel. This patch reports the channel creation time to all clients, regardless if they are joined to that channel or not. At least ircd-seven behaves like this. This closes #188. Thanks Cahata!
This commit is contained in:
parent
52825cde29
commit
81b81c818c
|
@ -378,11 +378,13 @@ Channel_Mode_Answer_Request(CLIENT *Origin, CHANNEL *Channel)
|
||||||
char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], argadd[CLIENT_PASS_LEN];
|
char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], argadd[CLIENT_PASS_LEN];
|
||||||
const char *mode_ptr;
|
const char *mode_ptr;
|
||||||
|
|
||||||
/* Member or not? -- That's the question! */
|
if (!Channel_IsMemberOf(Channel, Origin)) {
|
||||||
if (!Channel_IsMemberOf(Channel, Origin))
|
/* Not a member: "simple" mode reply */
|
||||||
return IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
|
if (!IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
|
||||||
Client_ID(Origin), Channel_Name(Channel), Channel_Modes(Channel));
|
Client_ID(Origin), Channel_Name(Channel),
|
||||||
|
Channel_Modes(Channel)))
|
||||||
|
return DISCONNECTED;
|
||||||
|
} else {
|
||||||
/* The sender is a member: generate extended reply */
|
/* The sender is a member: generate extended reply */
|
||||||
strlcpy(the_modes, Channel_Modes(Channel), sizeof(the_modes));
|
strlcpy(the_modes, Channel_Modes(Channel), sizeof(the_modes));
|
||||||
mode_ptr = the_modes;
|
mode_ptr = the_modes;
|
||||||
|
@ -391,12 +393,14 @@ Channel_Mode_Answer_Request(CLIENT *Origin, CHANNEL *Channel)
|
||||||
while(*mode_ptr) {
|
while(*mode_ptr) {
|
||||||
switch(*mode_ptr) {
|
switch(*mode_ptr) {
|
||||||
case 'l':
|
case 'l':
|
||||||
snprintf(argadd, sizeof(argadd), " %lu", Channel_MaxUsers(Channel));
|
snprintf(argadd, sizeof(argadd), " %lu",
|
||||||
|
Channel_MaxUsers(Channel));
|
||||||
strlcat(the_args, argadd, sizeof(the_args));
|
strlcat(the_args, argadd, sizeof(the_args));
|
||||||
break;
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
strlcat(the_args, " ", sizeof(the_args));
|
strlcat(the_args, " ", sizeof(the_args));
|
||||||
strlcat(the_args, Channel_Key(Channel), sizeof(the_args));
|
strlcat(the_args, Channel_Key(Channel),
|
||||||
|
sizeof(the_args));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
mode_ptr++;
|
mode_ptr++;
|
||||||
|
@ -408,7 +412,10 @@ Channel_Mode_Answer_Request(CLIENT *Origin, CHANNEL *Channel)
|
||||||
Client_ID(Origin), Channel_Name(Channel),
|
Client_ID(Origin), Channel_Name(Channel),
|
||||||
the_modes))
|
the_modes))
|
||||||
return DISCONNECTED;
|
return DISCONNECTED;
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef STRICT_RFC
|
#ifndef STRICT_RFC
|
||||||
|
/* Channel creation time */
|
||||||
if (!IRC_WriteStrClient(Origin, RPL_CREATIONTIME_MSG,
|
if (!IRC_WriteStrClient(Origin, RPL_CREATIONTIME_MSG,
|
||||||
Client_ID(Origin), Channel_Name(Channel),
|
Client_ID(Origin), Channel_Name(Channel),
|
||||||
Channel_CreationTime(Channel)))
|
Channel_CreationTime(Channel)))
|
||||||
|
|
Loading…
Reference in New Issue