summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircconnection.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc/ircconnection.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircconnection.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircconnection.h b/noncore/net/opieirc/ircconnection.h
index 75cdf6d..382b1c0 100644
--- a/noncore/net/opieirc/ircconnection.h
+++ b/noncore/net/opieirc/ircconnection.h
@@ -28,25 +28,29 @@
/* IRCConnection acts as a wrapper around QSocket
and is responsible for the communication with the
IRC server */
class IRCConnection : public QObject {
Q_OBJECT
public:
IRCConnection(IRCServer *server);
void doConnect();
/* used to send commands to the IRC server */
void sendLine(QString line);
/* used to send CTCP commands to the IRC server */
- void sendCTCP(QString nick, QString line);
+ void sendCTCPReply(const QString &nickname, const QString &type, const QString &args);
+ void sendCTCPRequest(const QString &nickname, const QString &type, const QString &args);
+ void sendCTCPPing(const QString &nickname);
+ void whois(const QString &nickname);
+ void sendCTCPping(const QString &nickname);
void close();
bool isConnected();
bool isLoggedIn();
signals:
/* triggered when the server sent us a message */
void messageArrived(IRCMessage *message);
/* Used to send commands to the UI (such as displaying text etc) */
void outputReady(IRCOutput output);
protected slots:
/* automatically executed after the connection is established */
void login();
/* called when there are socket errors */