void Session::workUpdatesTooLong(InboundPkt &inboundPkt, qint64 msgId) {
    qCDebug(TG_CORE_SESSION) << "workUpdatesTooLong: msgId =" << QString::number(msgId, 16);
    mAsserter.check(inboundPkt.fetchInt() == (qint32)TL_UpdatesTooLong);
    Q_EMIT updatesTooLong();
}
Example #2
0
void Session::workUpdatesTooLong(InboundPkt &inboundPkt, qint64 msgId) {
    qCDebug(TG_CORE_SESSION) << "workUpdatesTooLong: msgId =" << QString::number(msgId, 16);
    UpdatesType upd(&inboundPkt);
    Q_UNUSED(upd)
    Q_EMIT updatesTooLong();
}