LAPTOP-SNT8I5JK\Boounion
2025-05-10 0b32b5ca45370256da5bbfa8ca43014890258997
SourceCode/Bond/Servo/CEqReadStep.cpp
@@ -43,14 +43,14 @@
      if (0 != nRet) {
         LOGI("<CEqReadStep>Read data error.");
         if (m_onReadBlock != nullptr) {
            m_onReadBlock(RERROR, nullptr, 0);
            m_onReadBlock(this, RERROR, nullptr, 0);
         }
         return -1;
      }
      LOGI("<CEqReadStep>read data succeed.");
      if (m_onReadBlock != nullptr) {
         m_onReadBlock(ROK, szBuffer, m_nReadSize);
         m_onReadBlock(this, ROK, szBuffer, m_nReadSize);
      }
@@ -62,7 +62,7 @@
      CReadStep::onComplete();
      LOGI("<CEqReadStep> onComplete.");
      if (m_onReadBlock != nullptr) {
         m_onReadBlock(RCOMPLETE, nullptr, 0);
         m_onReadBlock(this, RCOMPLETE, nullptr, 0);
      }
      return 0;
@@ -73,7 +73,7 @@
      CReadStep::onTimeout();
      LOGI("<CEqReadStep> onTimeout.");
      if (m_onReadBlock != nullptr) {
         m_onReadBlock(RTIMEOUT, nullptr, 0);
         m_onReadBlock(this, RTIMEOUT, nullptr, 0);
      }
      return 0;