mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 07:31:36 +08:00
14 lines
566 B
Diff
14 lines
566 B
Diff
|
diff --git a/quic/server/QuicServerWorker.cpp b/quic/server/QuicServerWorker.cpp
|
||
|
index 744cb81..ff3e559 100644
|
||
|
--- a/quic/server/QuicServerWorker.cpp
|
||
|
+++ b/quic/server/QuicServerWorker.cpp
|
||
|
@@ -692,7 +692,7 @@ PacketDropReason QuicServerWorker::isDstConnIdMisrouted(
|
||
|
"Dropping packet due to DCID parsing error={}, errorCode={},"
|
||
|
"routingInfo = {} ",
|
||
|
ex.what(),
|
||
|
- ex.errorCode(),
|
||
|
+ toString(ex.errorCode()),
|
||
|
logRoutingInfo(dstConnId));
|
||
|
// TODO do we need to reset?
|
||
|
return PacketDropReason::PARSE_ERROR_DCID;
|