mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Add CNumericMessage
This commit is contained in:
@@ -182,8 +182,9 @@ void CIRCSock::ReadLine(const CString& sData) {
|
||||
}
|
||||
|
||||
if ((sCmd.length() == 3) && (isdigit(sCmd[0])) && (isdigit(sCmd[1])) && (isdigit(sCmd[2]))) {
|
||||
CNumericMessage& NumericMsg = static_cast<CNumericMessage&>(Message);
|
||||
CString sServer = Message.GetNick().GetHostMask();
|
||||
unsigned int uRaw = sCmd.ToUInt();
|
||||
unsigned int uRaw = NumericMsg.GetCode();
|
||||
CString sNick = Message.GetParam(0);
|
||||
CString sRest = Message.GetParams(1);
|
||||
CString sTmp;
|
||||
|
||||
Reference in New Issue
Block a user