From fc09c392c9bceb9750888d1455d8246ba01ee7a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 7 Jun 2015 00:53:11 +0200 Subject: [PATCH] kike: implement RPL_CREATIONTIME Since it's trivial. --- kike.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kike.c b/kike.c index a197c5c..5c3dfd9 100644 --- a/kike.c +++ b/kike.c @@ -404,6 +404,7 @@ struct channel unsigned modes; ///< Channel modes char *key; ///< Channel key long user_limit; ///< User limit or -1 + time_t created; ///< Creation time char *topic; ///< Channel topic @@ -669,6 +670,7 @@ irc_channel_create (struct server_context *ctx, const char *name) struct channel *chan = channel_new (); chan->ctx = ctx; chan->name = xstrdup (name); + chan->created = time (NULL); str_map_set (&ctx->channels, name, chan); return chan; } @@ -1714,6 +1716,8 @@ irc_handle_mode (const struct irc_message *msg, struct client *c) { char *mode = channel_get_mode (chan, channel_get_user (chan, c)); irc_send_reply (c, IRC_RPL_CHANNELMODEIS, target, mode); + irc_send_reply (c, IRC_RPL_CREATIONTIME, + target, (long long) chan->created); free (mode); } else