only join one channel

This commit is contained in:
2018-11-23 14:46:09 +01:00
parent 90f7af7bdc
commit 51e80a6aad
2 changed files with 7 additions and 6 deletions

View File

@@ -32,6 +32,7 @@ private:
int port;
String nick;
String user;
String channel;
void applyConfig(IrcConfig cfg);
void applyConfigFromFile(const char *fileName);
@@ -41,7 +42,7 @@ private:
virtual void callback(IRCMessage ircMessage);
virtual void debugSentCallback(String data);
void join(String channel);
void sendMessage(String to, String msg);
void sendMessage(String msg);
};
#endif