aboutsummaryrefslogtreecommitdiffstats
path: root/build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch
diff options
context:
space:
mode:
Diffstat (limited to 'build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch')
-rw-r--r--build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch b/build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch
deleted file mode 100644
index 589d8cde125..00000000000
--- a/build/external/patches/quicly_0.0.5-vpp/0002-quicly-rtt-time-skew.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/lib/quicly.c b/lib/quicly.c
-index 95d5f13..3f4fd18 100644
---- a/lib/quicly.c
-+++ b/lib/quicly.c
-@@ -351,7 +351,10 @@ static __thread int64_t now;
-
- static void update_now(quicly_context_t *ctx)
- {
-- now = ctx->now->cb(ctx->now);
-+ int64_t newval = ctx->now->cb(ctx->now);
-+
-+ if (now < newval)
-+ now = newval;
- }
-
- /**