diff options
Diffstat (limited to 'src/net/chatserver/chatserver.h')
-rw-r--r-- | src/net/chatserver/chatserver.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/chatserver/chatserver.h b/src/net/chatserver/chatserver.h index 411d5e7b..dac19e88 100644 --- a/src/net/chatserver/chatserver.h +++ b/src/net/chatserver/chatserver.h @@ -43,7 +43,7 @@ namespace Net void privMsg(const std::string &recipient, const std::string &text); void registerChannel(const std::string &name, - const std::string &announcement, const std::string &password); + const std::string &topic, const std::string &password); void enterChannel(const std::string &channel, const std::string &password); @@ -53,6 +53,8 @@ namespace Net void getUserList(const std::string &channel); + void setChannelTopic(short channel, const std::string &topic); + } } |