This is an automated email from the ASF dual-hosted git repository.
maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new fa91fda338 Fix build issue on mac (#9805)
fa91fda338 is described below
commit fa91fda3383d8e3f5544d335029244c48b111816
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Fri Jun 9 05:14:58 2023 +0900
Fix build issue on mac (#9805)
---
iocore/net/QUICPacketHandler_quiche.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/iocore/net/QUICPacketHandler_quiche.cc
b/iocore/net/QUICPacketHandler_quiche.cc
index 65b8fae054..516f268cd7 100644
--- a/iocore/net/QUICPacketHandler_quiche.cc
+++ b/iocore/net/QUICPacketHandler_quiche.cc
@@ -190,7 +190,7 @@ QUICPacketHandlerIn::_get_continuation()
void
QUICPacketHandlerIn::_recv_packet(int event, UDPPacket *udp_packet)
{
- uint64_t buf_len{0};
+ size_t buf_len{0};
uint8_t *buf = udp_packet->get_entire_chain_buffer(&buf_len);
constexpr int MAX_TOKEN_LEN = 1200;