Commit 23212535 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Enlarge receive buffer

parent dc3ca53a
...@@ -524,7 +524,7 @@ void Client::quic_restart_pkt_timer() { ...@@ -524,7 +524,7 @@ void Client::quic_restart_pkt_timer() {
} }
int Client::read_quic() { int Client::read_quic() {
std::array<uint8_t, 1500> buf; std::array<uint8_t, 65536> buf;
sockaddr_union su; sockaddr_union su;
socklen_t addrlen = sizeof(su); socklen_t addrlen = sizeof(su);
int rv; int rv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment