From 305c9aa0da53ca7b809a0ead3cf5fdd0818e1c49 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sun, 21 Apr 2019 16:54:36 -0700 Subject: [PATCH] fix getReplyMessageType --- ircddb/IRCDDBApp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ircddb/IRCDDBApp.cpp b/ircddb/IRCDDBApp.cpp index e6a08af..d20a30f 100644 --- a/ircddb/IRCDDBApp.cpp +++ b/ircddb/IRCDDBApp.cpp @@ -253,6 +253,8 @@ IRCDDB_RESPONSE_TYPE IRCDDBApp::getReplyMessageType() return IDRT_REPEATER; } else if (msgType == std::string("IDRT_GATEWAY")) { return IDRT_GATEWAY; + } else if (msgType == std::string("IDRT_PING")) { + return IDRT_PING; } printf("IRCDDBApp::getMessageType: unknown msg type: %s\n", msgType.c_str());