Skip to content

Commit 25beeed

Browse files
committed
Ran the formatter...
1 parent 795b47a commit 25beeed

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/network.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,10 @@ std::chrono::milliseconds Network::retry_delay(
767767
std::shared_ptr<quic::Endpoint> Network::get_endpoint() {
768768
return net.call_get([this]() mutable {
769769
if (!endpoint)
770-
endpoint = net.endpoint(quic::Address{"0.0.0.0", 0}, quic::opt::alpns{ALPN}, quic::opt::disable_mtu_discovery{});
770+
endpoint = net.endpoint(
771+
quic::Address{"0.0.0.0", 0},
772+
quic::opt::alpns{ALPN},
773+
quic::opt::disable_mtu_discovery{});
771774

772775
return endpoint;
773776
});

0 commit comments

Comments
 (0)