summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc
authorskyhusker <skyhusker>2005-02-02 13:36:32 (UTC)
committer skyhusker <skyhusker>2005-02-02 13:36:32 (UTC)
commit737b0b5ce3e5db15bf11f696b070c9b475f92b61 (patch) (side-by-side diff)
treef37a834ddaffc9447c71a86c594a522fe97295b7 /noncore/net/opieirc
parentf1f48d6711b359499c7ab3b9102a25f21259df53 (diff)
downloadopie-737b0b5ce3e5db15bf11f696b070c9b475f92b61.zip
opie-737b0b5ce3e5db15bf11f696b070c9b475f92b61.tar.gz
opie-737b0b5ce3e5db15bf11f696b070c9b475f92b61.tar.bz2
Slightly modified debug messages
Diffstat (limited to 'noncore/net/opieirc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessage.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/noncore/net/opieirc/ircmessage.cpp b/noncore/net/opieirc/ircmessage.cpp
index 1b7072e..da8db77 100644
--- a/noncore/net/opieirc/ircmessage.cpp
+++ b/noncore/net/opieirc/ircmessage.cpp
@@ -52,12 +52,8 @@ IRCMessage::IRCMessage(QString line) {
/* Is this a CTCP command */
if ((m_command == "PRIVMSG" || m_command == "NOTICE") && m_trailing.length()>0 && m_trailing.left(1) == QChar(1)) {
m_ctcp = TRUE;
- if (m_command == "PRIVMSG") {
- m_ctcpRequest = TRUE;
- }
- else {
- m_ctcpRequest = FALSE;
- }
+
+ m_ctcpRequest = (m_command == "PRIVMSG");
/* Strip CTCP \001 characters */
m_allParameters = m_allParameters.replace(QRegExp(QChar(1)), "");
@@ -85,12 +81,16 @@ IRCMessage::IRCMessage(QString line) {
odebug << "Prefix: " << m_prefix << oendl;
odebug << "Command: " << m_command << oendl;
odebug << "Allparameters: " << m_allParameters << oendl;
+
for (unsigned int i=0; i<m_parameters.count(); i++) {
odebug << "Parameter " << i << ":" << m_parameters[i] << oendl;
}
- odebug << "CTCP Command: " << m_ctcpCommand << oendl;
- odebug << "CTCP Destination: " << m_ctcpDestination << oendl;
- odebug << "CTCP param count is: " << m_parameters.count() << oendl;
+
+ if(m_ctcp) {
+ odebug << "CTCP " << (m_ctcpRequest? "Request" : "Reply") << ": " << m_ctcpCommand << oendl;
+ odebug << "CTCP Destination: " << m_ctcpDestination << oendl;
+ odebug << "CTCP param count is: " << m_parameters.count() << oendl;
+ }
}