summaryrefslogtreecommitdiff
path: root/include/kvm_websocket.hpp
diff options
context:
space:
mode:
authorAdriana Kobylak <anoo@us.ibm.com>2019-04-24 19:19:18 +0300
committerEd Tanous <ed.tanous@intel.com>2019-05-02 03:37:45 +0300
commitae29b8c4d22fddb9f17610f87d27b53c95509e7c (patch)
tree5d01a7b1e328ead214f719dc6de1f70929dde049 /include/kvm_websocket.hpp
parent7bffdb7e9da69ae5416cda8df826372c33716beb (diff)
downloadbmcweb-ae29b8c4d22fddb9f17610f87d27b53c95509e7c.tar.xz
bmcweb: /s/boost::beast::string_view/std::string_view/g
Follow-on to https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/18891 Tested: Checked that the host console and virtual media endpoints still worked as expected. Change-Id: Ifdc5f21f3668bdf9bd24189504aaeb17b232c921 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
Diffstat (limited to 'include/kvm_websocket.hpp')
-rw-r--r--include/kvm_websocket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kvm_websocket.hpp b/include/kvm_websocket.hpp
index d0c5539dd0..ae4d899860 100644
--- a/include/kvm_websocket.hpp
+++ b/include/kvm_websocket.hpp
@@ -87,7 +87,7 @@ inline void readDone(const boost::system::error_code& ec, std::size_t bytesRead)
}
outputBuffer.commit(bytesRead);
- boost::beast::string_view payload(
+ std::string_view payload(
static_cast<const char*>(outputBuffer.data().data()), bytesRead);
BMCWEB_LOG_DEBUG << "Sending payload size " << payload.size();
session->sendBinary(payload);