diff options
author | Paul Rouget <me@paulrouget.com> | 2020-08-03 17:22:24 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2020-08-03 17:36:52 +0200 |
commit | 8759eb18ba0189332623904436c41b1081e26b76 (patch) | |
tree | 8e30f92d0d4efebc3c36f47a45fc07f2309dde49 /support | |
parent | 43670c6eaa37ba8dd8258af28ea479f5248aec10 (diff) | |
download | servo-8759eb18ba0189332623904436c41b1081e26b76.tar.gz servo-8759eb18ba0189332623904436c41b1081e26b76.zip |
Allow longer devtools JSON messages
Diffstat (limited to 'support')
-rw-r--r-- | support/hololens/ServoApp/Devtools/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/hololens/ServoApp/Devtools/Client.cpp b/support/hololens/ServoApp/Devtools/Client.cpp index f854647ce0a..a790b2f0eb8 100644 --- a/support/hololens/ServoApp/Devtools/Client.cpp +++ b/support/hololens/ServoApp/Devtools/Client.cpp @@ -79,7 +79,7 @@ IAsyncAction DevtoolsClient::Loop() { } catch (...) { throw hresult_error(E_FAIL, L"Can't parse message header:" + c); } - if (len >= 10000) { + if (len >= 100000) { throw hresult_error(E_FAIL, L"Message length too long"); } } |