commit - a77353361bc11a25f30bd1ea13d54cb92e1134a4
commit + decf98d5efce97f1abfbd125a9aae92a2e94b89f
blob - 53c385c2c158f602265f81f02d086817b2de7f30
blob + b317ada41efb0b1fd645f776272f869da96c65d7
--- src/ngircd/channel.c
+++ src/ngircd/channel.c
#include "log.h"
#include "messages.h"
#include "match.h"
+#include "parse.h"
+#include "irc-mode.h"
#define REMOVE_PART 0
#define REMOVE_QUIT 1
Channel_InitPredefined( void )
{
CHANNEL *new_chan;
+ REQUEST Req;
const struct Conf_Channel *conf_chan;
- const char *c;
+ char *c;
+ char modes[COMMAND_LEN], name[CHANNEL_NAME_LEN];
size_t i, channel_count = array_length(&Conf_Channels, sizeof(*conf_chan));
conf_chan = array_start(&Conf_Channels);
if (conf_chan->topic[0])
Channel_SetTopic(new_chan, NULL, conf_chan->topic);
- c = conf_chan->modes;
- while (*c)
- Channel_ModeAdd(new_chan, *c++);
+ /* Evaluate modes string with a fake request */
+ if(conf_chan->modes[0]) {
+ strlcpy(modes, conf_chan->modes, sizeof(modes));
+ strlcpy(name, conf_chan->name, sizeof(name));
+ Log(LOG_DEBUG, "Evaluate \"MODE %s %s\".", name, modes);
+ Req.argc = 0;
+ Req.argv[Req.argc++] = name;
+ Req.prefix = Client_ID(Client_ThisServer());
+ Req.command = "MODE";
+ c = strtok(modes, " ");
+ while (c && Req.argc<15) {
+ Req.argv[Req.argc++] = c;
+ c = strtok(0, " ");
+ }
+ IRC_MODE(Client_ThisServer(), &Req);
+ }
Channel_SetKey(new_chan, conf_chan->key);
Channel_SetMaxUsers(new_chan, conf_chan->maxusers);
blob - 8029c0f77b3086d17512d8466ef04821402d1b15
blob + 900338dd0124e3d8f36a5b9dfa8bca39c45a81a0
--- src/ngircd/conf.h
+++ src/ngircd/conf.h
/** Pre-defined channels */
struct Conf_Channel {
char name[CHANNEL_NAME_LEN]; /**< Name of the channel */
- char modes[CHANNEL_MODE_LEN]; /**< Initial channel modes */
+ char modes[COMMAND_LEN]; /**< Initial channel modes to evaluate */
char key[CLIENT_PASS_LEN]; /**< Channel key ("password", mode "k" ) */
char topic[COMMAND_LEN]; /**< Initial topic */
char keyfile[512]; /**< Path and name of channel key file */