aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/ngtcp2/lib/ngtcp2_pq.h
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2025-03-10 19:42:22 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2025-03-10 19:56:23 +0300
commitfc6cd7d48282fba73b60215b3fd31fc0a8825982 (patch)
treebcb36b06098e700fd726b6b19c89e6fae7d429e2 /contrib/libs/ngtcp2/lib/ngtcp2_pq.h
parent21c1cc59ef7d0910313ef39ca737c78380ef3ec3 (diff)
downloadydb-fc6cd7d48282fba73b60215b3fd31fc0a8825982.tar.gz
Update contrib/libs/ngtcp2 to 1.11.0
commit_hash:3beea54841aa142a4af33f802d5bdb7d6010b68d
Diffstat (limited to 'contrib/libs/ngtcp2/lib/ngtcp2_pq.h')
-rw-r--r--contrib/libs/ngtcp2/lib/ngtcp2_pq.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/libs/ngtcp2/lib/ngtcp2_pq.h b/contrib/libs/ngtcp2/lib/ngtcp2_pq.h
index 84961c9143..aa195a9f7b 100644
--- a/contrib/libs/ngtcp2/lib/ngtcp2_pq.h
+++ b/contrib/libs/ngtcp2/lib/ngtcp2_pq.h
@@ -109,17 +109,6 @@ int ngtcp2_pq_empty(const ngtcp2_pq *pq);
*/
size_t ngtcp2_pq_size(const ngtcp2_pq *pq);
-typedef int (*ngtcp2_pq_item_cb)(ngtcp2_pq_entry *item, void *arg);
-
-/*
- * ngtcp2_pq_each applies |fun| to each item in |pq|. The |arg| is
- * passed as arg parameter to callback function. This function must
- * not change the ordering key. If the return value from callback is
- * nonzero, this function returns 1 immediately without iterating
- * remaining items. Otherwise this function returns 0.
- */
-int ngtcp2_pq_each(const ngtcp2_pq *pq, ngtcp2_pq_item_cb fun, void *arg);
-
/*
* ngtcp2_pq_remove removes |item| from |pq|. |pq| must contain
* |item| otherwise the behavior is undefined.