mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-07-06 03:28:09 +08:00
优化性能
This commit is contained in:
@@ -62,6 +62,9 @@ private:
|
||||
int send(const string &strBuf) override {
|
||||
return m_pSender->send(strBuf);
|
||||
}
|
||||
int send(string &&strBuf) override {
|
||||
return m_pSender->send(std::move(strBuf));
|
||||
}
|
||||
int send(const char *pcBuf, int iSize) override {
|
||||
return m_pSender->send(pcBuf, iSize);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user