Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 04 Aug 2026 11:47:03 +0000
From:      Yusuf Yaman <nxjoseph@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Cc:        Rafe Sadler <mondo.debater_0q@icloud.com>
Subject:   git: 03364767925b - main - devel/mongo-c-driver: Update 1.30.8 => 2.3.3
Message-ID:  <6a71d137.1f282.22aaef64@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by nxjoseph:

URL: https://cgit.FreeBSD.org/ports/commit/?id=03364767925be669564323b85e0c411bc7964878

commit 03364767925be669564323b85e0c411bc7964878
Author:     Rafe Sadler <mondo.debater_0q@icloud.com>
AuthorDate: 2026-08-03 21:40:44 +0000
Commit:     Yusuf Yaman <nxjoseph@FreeBSD.org>
CommitDate: 2026-08-04 11:46:47 +0000

    devel/mongo-c-driver: Update 1.30.8 => 2.3.3
    
    While here, add a new VERSION substition for pkg-plist easy updates.
    
    Changelog:
    https://github.com/mongodb/mongo-c-driver/blob/2.3.3/NEWS
    
    PR:             296601
    Reported by:    Hiroo Ono <hiroo.ono+freebsd@gmail.com>
    Approved by:    Krzysztof <ports@bsdserwis.com> (maintainer)
    Approved by:    osa, vvd (Mentors, implicit)
---
 devel/mongo-c-driver/Makefile                      |    7 +-
 devel/mongo-c-driver/distinfo                      |    6 +-
 .../files/patch-build_sphinx_mongoc__common.py     |   25 -
 devel/mongo-c-driver/pkg-plist                     | 1301 ++++----------------
 4 files changed, 257 insertions(+), 1082 deletions(-)

diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile
index 2480aeaafd53..313e3750f7f2 100644
--- a/devel/mongo-c-driver/Makefile
+++ b/devel/mongo-c-driver/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	mongo-c-driver
 # Note: devel/mongo-cxx-driver requires specific versions of this port
-DISTVERSION=	1.30.8
+DISTVERSION=	2.3.3
 CATEGORIES=	devel
 
 MAINTAINER=	ports@bsdserwis.com
@@ -10,7 +10,8 @@ WWW=		https://github.com/mongodb/mongo-c-driver
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-LIB_DEPENDS=	libbson-1.0.so:devel/libbson \
+BUILD_DEPENDS=	libbson>=2.3.3:devel/libbson
+LIB_DEPENDS=	libbson2.so:devel/libbson \
 		libutf8proc.so:textproc/utf8proc \
 		libzstd.so:archivers/zstd
 
@@ -23,6 +24,8 @@ GH_ACCOUNT=	mongodb
 GH_PROJECT=	mongo-c-driver
 USE_LDCONFIG=	yes
 
+PLIST_SUB=	VERSION=${DISTVERSION}
+
 CMAKE_ARGS=	-DENABLE_ZLIB=SYSTEM
 CMAKE_ON=	ENABLE_MONGOC \
 		ENABLE_ZSTD \
diff --git a/devel/mongo-c-driver/distinfo b/devel/mongo-c-driver/distinfo
index 8eeb48ab2cc6..d840e29ce85a 100644
--- a/devel/mongo-c-driver/distinfo
+++ b/devel/mongo-c-driver/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1773626119
-SHA256 (mongodb-mongo-c-driver-1.30.8_GH0.tar.gz) = 11f87477efe7aa9cacd9fd18872eb7e629adee898af627f670d1c2e2911b4670
-SIZE (mongodb-mongo-c-driver-1.30.8_GH0.tar.gz) = 7482952
+TIMESTAMP = 1785384768
+SHA256 (mongodb-mongo-c-driver-2.3.3_GH0.tar.gz) = 1ca94a2f706e8eab5c9478f1725c69bff23d2692e4a1e476bce093245c8efd5d
+SIZE (mongodb-mongo-c-driver-2.3.3_GH0.tar.gz) = 7981762
diff --git a/devel/mongo-c-driver/files/patch-build_sphinx_mongoc__common.py b/devel/mongo-c-driver/files/patch-build_sphinx_mongoc__common.py
deleted file mode 100644
index 8fb833601579..000000000000
--- a/devel/mongo-c-driver/files/patch-build_sphinx_mongoc__common.py
+++ /dev/null
@@ -1,25 +0,0 @@
---- build/sphinx/mongoc_common.py.orig	2026-02-03 15:13:43 UTC
-+++ build/sphinx/mongoc_common.py
-@@ -146,17 +146,17 @@ def generate_html_redirs(app: Sphinx, page: str, templ
-     redirect_file = out_index_html.parent.parent / f"{slug}.html"
-     # HACK: handle_page() is not properly reentrant. Save and restore state for
-     # this page while we generate our redirects page:
--    prev_scripts = builder.script_files[:]
--    prev_css = builder.css_files[:]
-+    prev_scripts = builder.globalcontext['script_files'][:]
-+    prev_css = builder.globalcontext['css_files'][:]
-     builder.handle_page(
-         f"redirect-for-{page}",
-         {"target": page, "writing-redirect": 1},
-         str(Path(__file__).parent.resolve() / "redirect.t.html"),
--        str(redirect_file),
-+        outfilename=str(redirect_file),
-     )
-     # Restore prior state:
--    builder.script_files[:] = prev_scripts
--    builder.css_files[:] = prev_css
-+    builder.globalcontext['script_files'][:] = prev_scripts
-+    builder.globalcontext['css_files'][:] = prev_css
-     sphinx_log.debug("Wrote redirect: %r -> %r", path, page)
- 
- def mongoc_common_setup(app: Sphinx):
diff --git a/devel/mongo-c-driver/pkg-plist b/devel/mongo-c-driver/pkg-plist
index 599eb8dcbee5..96a4a59b10ed 100644
--- a/devel/mongo-c-driver/pkg-plist
+++ b/devel/mongo-c-driver/pkg-plist
@@ -1,76 +1,176 @@
-include/libmongoc-1.0/mongoc/mongoc-apm.h
-include/libmongoc-1.0/mongoc/mongoc-bulk-operation.h
-include/libmongoc-1.0/mongoc/mongoc-bulkwrite.h
-include/libmongoc-1.0/mongoc/mongoc-change-stream.h
-include/libmongoc-1.0/mongoc/mongoc-client-pool.h
-include/libmongoc-1.0/mongoc/mongoc-client-session.h
-include/libmongoc-1.0/mongoc/mongoc-client-side-encryption.h
-include/libmongoc-1.0/mongoc/mongoc-client.h
-include/libmongoc-1.0/mongoc/mongoc-collection.h
-include/libmongoc-1.0/mongoc/mongoc-config.h
-include/libmongoc-1.0/mongoc/mongoc-cursor.h
-include/libmongoc-1.0/mongoc/mongoc-database.h
-include/libmongoc-1.0/mongoc/mongoc-error.h
-include/libmongoc-1.0/mongoc/mongoc-find-and-modify.h
-include/libmongoc-1.0/mongoc/mongoc-flags.h
-include/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h
-include/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h
-include/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h
-include/libmongoc-1.0/mongoc/mongoc-gridfs-file.h
-include/libmongoc-1.0/mongoc/mongoc-gridfs.h
-include/libmongoc-1.0/mongoc/mongoc-handshake.h
-include/libmongoc-1.0/mongoc/mongoc-host-list.h
-include/libmongoc-1.0/mongoc/mongoc-index.h
-include/libmongoc-1.0/mongoc/mongoc-init.h
-include/libmongoc-1.0/mongoc/mongoc-iovec.h
-include/libmongoc-1.0/mongoc/mongoc-log.h
-include/libmongoc-1.0/mongoc/mongoc-macros.h
-include/libmongoc-1.0/mongoc/mongoc-matcher.h
-include/libmongoc-1.0/mongoc/mongoc-opcode.h
-include/libmongoc-1.0/mongoc/mongoc-optional.h
-include/libmongoc-1.0/mongoc/mongoc-prelude.h
-include/libmongoc-1.0/mongoc/mongoc-rand.h
-include/libmongoc-1.0/mongoc/mongoc-read-concern.h
-include/libmongoc-1.0/mongoc/mongoc-read-prefs.h
-include/libmongoc-1.0/mongoc/mongoc-server-api.h
-include/libmongoc-1.0/mongoc/mongoc-server-description.h
-include/libmongoc-1.0/mongoc/mongoc-sleep.h
-include/libmongoc-1.0/mongoc/mongoc-socket.h
-include/libmongoc-1.0/mongoc/mongoc-ssl.h
-include/libmongoc-1.0/mongoc/mongoc-stream-buffered.h
-include/libmongoc-1.0/mongoc/mongoc-stream-file.h
-include/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h
-include/libmongoc-1.0/mongoc/mongoc-stream-socket.h
-include/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h
-include/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h
-include/libmongoc-1.0/mongoc/mongoc-stream-tls.h
-include/libmongoc-1.0/mongoc/mongoc-stream.h
-include/libmongoc-1.0/mongoc/mongoc-structured-log.h
-include/libmongoc-1.0/mongoc/mongoc-topology-description.h
-include/libmongoc-1.0/mongoc/mongoc-uri.h
-include/libmongoc-1.0/mongoc/mongoc-version-functions.h
-include/libmongoc-1.0/mongoc/mongoc-version.h
-include/libmongoc-1.0/mongoc/mongoc-write-concern.h
-include/libmongoc-1.0/mongoc/mongoc.h
-include/libmongoc-1.0/mongoc.h
-lib/cmake/libmongoc-1.0/libmongoc-1.0-config-version.cmake
-lib/cmake/libmongoc-1.0/libmongoc-1.0-config.cmake
-lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config-version.cmake
-lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config.cmake
-%%SASL%%lib/cmake/mongoc-1.0/3rdParty/FindSASL2.cmake
-lib/cmake/mongoc-1.0/mongoc-1.0-config-version.cmake
-lib/cmake/mongoc-1.0/mongoc-1.0-config.cmake
-lib/cmake/mongoc-1.0/mongoc-targets-%%CMAKE_BUILD_TYPE%%.cmake
-lib/cmake/mongoc-1.0/mongoc-targets.cmake
-lib/cmake/mongoc-1.30.8/mongocConfig.cmake
-lib/cmake/mongoc-1.30.8/mongocConfigVersion.cmake
-lib/libmongoc-1.0.so
-lib/libmongoc-1.0.so.0
-lib/libmongoc-1.0.so.0.0.0
-lib/libmongoc-static-1.0.a
-libdata/pkgconfig/libmongoc-1.0.pc
-%%SSL%%libdata/pkgconfig/libmongoc-ssl-1.0.pc
-libdata/pkgconfig/libmongoc-static-1.0.pc
+include/mongoc-%%VERSION%%/mongoc/mongoc-apm.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-bulk-operation.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-bulkwrite.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-change-stream.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-client-pool.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-client-session.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-client-side-encryption.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-client.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-collection.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-config.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-cursor.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-database.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-error.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-find-and-modify.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-flags.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-gridfs-bucket.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-gridfs-file-list.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-gridfs-file-page.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-gridfs-file.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-gridfs.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-handshake.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-host-list.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-init.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-iovec.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-log.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-macros.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-oidc-callback.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-opcode.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-optional.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-prelude.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-rand.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-read-concern.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-read-prefs.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-server-api.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-server-description.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-sleep.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-socket.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-ssl.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-buffered.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-file.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-gridfs.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-socket.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-tls-openssl.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream-tls.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-stream.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-structured-log.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-topology-description.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-uri.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-version-functions.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-version.h
+include/mongoc-%%VERSION%%/mongoc/mongoc-write-concern.h
+include/mongoc-%%VERSION%%/mongoc/mongoc.h
+%%SASL%%lib/cmake/mongoc-%%VERSION%%/3rdParty/FindSASL2.cmake
+lib/cmake/mongoc-%%VERSION%%/mongoc-targets-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/mongoc-%%VERSION%%/mongoc-targets.cmake
+lib/cmake/mongoc-%%VERSION%%/mongocConfig.cmake
+lib/cmake/mongoc-%%VERSION%%/mongocConfigVersion.cmake
+lib/libmongoc2.a
+lib/libmongoc2.so
+lib/libmongoc2.so.2
+lib/libmongoc2.so.%%VERSION%%
+libdata/pkgconfig/mongoc2-static.pc
+libdata/pkgconfig/mongoc2.pc
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_check_acknowledged.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_check_acknowledged_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_serverid.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_serverid_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_append_metadata.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_text_opts.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_set_case_sensitive.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_set_diacritic_sensitive.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_set_prefix.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_set_substring.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_set_suffix.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_opts_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_prefix_opts_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_prefix_opts_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_prefix_opts_set_str_max_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_prefix_opts_set_str_min_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_prefix_opts_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_set_str_max_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_set_str_max_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_set_str_min_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_substring_opts_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_suffix_opts_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_suffix_opts_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_suffix_opts_set_str_max_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_suffix_opts_set_str_min_query_length.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_text_suffix_opts_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_append_metadata.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_oidc_callback.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_oidc_callback.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_fn_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_get_fn.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_get_user_data.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_new_with_user_data.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_cancel_with_timeout.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_get_timeout.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_get_user_data.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_get_username.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_get_version.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_params_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_set_user_data.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_callback_t.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_destroy.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_get_access_token.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_get_expires_in.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_new.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_new_with_expires_in.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_oidc_credential_t.html
+%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_check_acknowledged.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_check_acknowledged_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_serverid.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_serverid_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_append_metadata.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_text_opts.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_set_case_sensitive.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_set_diacritic_sensitive.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_set_prefix.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_set_substring.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_set_suffix.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_opts_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_prefix_opts_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_prefix_opts_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_prefix_opts_set_str_max_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_prefix_opts_set_str_min_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_prefix_opts_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_set_str_max_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_set_str_max_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_set_str_min_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_substring_opts_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_suffix_opts_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_suffix_opts_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_suffix_opts_set_str_max_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_suffix_opts_set_str_min_query_length.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_text_suffix_opts_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_pool_append_metadata.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_oidc_callback.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_client_set_oidc_callback.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_fn_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_get_fn.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_get_user_data.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_new_with_user_data.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_cancel_with_timeout.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_get_timeout.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_get_user_data.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_get_username.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_get_version.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_params_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_set_user_data.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_callback_t.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_destroy.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_get_access_token.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_get_expires_in.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_new.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_new_with_expires_in.3.gz
+%%PORTDOCS%%share/man/man3/mongoc_oidc_credential_t.3.gz
+%%DATADIR%%/%%VERSION%%/COPYING
+%%DATADIR%%/%%VERSION%%/NEWS
+%%DATADIR%%/%%VERSION%%/README.rst
+%%DATADIR%%/%%VERSION%%/THIRD_PARTY_NOTICES
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/base-stemmer.js
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/basic.css
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/debug.css
@@ -89,1607 +189,760 @@ libdata/pkgconfig/libmongoc-static-1.0.pc
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/scripts/furo.js.map
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/searchtools.js
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/skeleton.css
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/sphinx_highlight.js
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/sphinx-design.min.css
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/sphinx_highlight.js
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles.css
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo-extensions.css
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo-extensions.css.map
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo.css
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo.css.map
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles.css
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/api/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/api.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/application-performance-monitoring/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/application-performance-monitoring.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/errors/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/errors.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/full_index/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/full_index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/genindex/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/genindex.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/gridfs/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/gridfs.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/init-cleanup/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/init-cleanup.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/lifecycle/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/lifecycle.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/logging/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/logging.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_command_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_command_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_database_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_database_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_duration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_duration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_error/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_error.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_operation_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_operation_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_reply/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_reply.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_request_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_request_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id_int64/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id_int64.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_service_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_service_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command_name/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command_name.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_context/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command_name.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_database_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_database_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_operation_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_operation_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_request_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_request_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id_int64/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id_int64.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_service_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_service_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_command_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_command_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_database_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_database_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_duration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_duration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_operation_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_operation_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_reply/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_reply.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_request_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_request_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id_int64/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id_int64.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_service_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_service_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_new_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_new_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_previous_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_previous_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_awaited/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_awaited.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_duration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_duration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_error/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_error.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_awaited/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_awaited.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_awaited/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_awaited.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_duration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_duration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_reply/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_reply.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_host/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_host.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_failed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_failed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_started_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_started_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_succeeded_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_succeeded_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_changed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_changed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_closed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_closed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_failed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_failed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_started_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_started_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_succeeded_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_succeeded_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_opening_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_opening_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_changed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_changed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_closed_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_closed_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_opening_cb/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_opening_cb.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_new_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_new_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_previous_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_previous_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_context/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_context.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_topology_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_topology_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_auto_encryption/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_auto_encryption.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_query_analysis/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_query_analysis.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_encrypted_fields_map/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_encrypted_fields_map.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_extra/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_extra.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_key_expiration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_key_expiration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client_pool/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client_pool.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_namespace/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client_pool.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_namespace.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_credential_provider_callback/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_credential_provider_callback.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_providers/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_providers.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_schema_map/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_schema_map.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_tls_opts/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_tls_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete_one/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete_one.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_execute/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_execute.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_hint/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_server_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_server_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_write_concern/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_write_concern.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert_with_opts/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_many_with_opts/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert_with_opts.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_many_with_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one_with_opts/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one_with_opts/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one_with_opts.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_bypass_document_validation/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_bypass_document_validation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_client_session/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_client_session.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_comment/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_comment.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_hint/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_let/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_let.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_server_id/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_server_id.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_many_with_opts/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_many_with_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deletemany/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deletemany.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deleteone/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deleteone.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_insertone/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_insertone.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_replaceone/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_replaceone.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updatemany/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updatemany.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updateone/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updateone.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_collation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_collation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_hint/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_collation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_collation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_hint/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_execute/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_execute.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_collation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_collation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_hint/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_sort/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_sort.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_upsert/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_upsert.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_client/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_client.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_session/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_session.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_arrayfilters/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_arrayfilters.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_collation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_collation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_hint/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_upsert/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_upsert.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_arrayfilters/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_arrayfilters.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_collation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_collation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_hint/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_hint.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_sort/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_sort.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_upsert/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_upsert.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_error/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_error.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_errorreply/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_errorreply.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeconcernerrors/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeconcernerrors.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeerrors/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeerrors.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_bypassdocumentvalidation/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_bypassdocumentvalidation.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_comment/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_comment.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_extra/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_extra.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_let/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_let.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_ordered/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_ordered.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_serverid/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_serverid.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_verboseresults/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_verboseresults.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_writeconcern/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_writeconcern.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deletedcount/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deletedcount.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deleteresults/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deleteresults.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertedcount/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertedcount.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertresults/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertresults.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_matchedcount/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_matchedcount.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_modifiedcount/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_modifiedcount.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_serverid/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_serverid.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_updateresults/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_updateresults.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_upsertedcount/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_upsertedcount.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwritereturn_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwritereturn_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_error_document/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_error_document.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_get_resume_token/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_get_resume_token.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_next/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_next.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_check_version/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_check_version.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cleanup/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cleanup.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_bulkwrite_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_bulkwrite_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple_with_server_id/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple_with_server_id.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_with_opts/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple_with_server_id.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_with_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_enable_auto_encryption/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_enable_auto_encryption.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_add_key_alt_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_add_key_alt_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_datakey/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_datakey.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_encrypted_collection/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_encrypted_collection.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keyaltnames/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keyaltnames.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keymaterial/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keymaterial.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_masterkey/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_masterkey.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_decrypt/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_decrypt.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_delete_key/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_delete_key.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_expression/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_expression.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_algorithm/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_algorithm.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_contention_factor/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_contention_factor.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyaltname/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyaltname.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyid/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyid.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_query_type/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_query_type.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_range_opts/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_range_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_max/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_max.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_min/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_min.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_precision/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_precision.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_sparsity/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_sparsity.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_trim_factor/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_trim_factor.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_crypt_shared_version/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_crypt_shared_version.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key_by_alt_name/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key_by_alt_name.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_keys/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key_by_alt_name.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_keys.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_destroy/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_key_expiration/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_key_expiration.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_client/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_client.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_namespace/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_namespace.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_credential_provider_callback/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_credential_provider_callback.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_providers/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_providers.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_tls_opts/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_tls_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_remove_key_alt_name/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_remove_key_alt_name.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_destroy/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_destroy.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_get_bulk_write_result/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_get_bulk_write_result.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_new/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_new.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_t/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_t.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_find_databases_with_opts/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_find_databases_with_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_collection/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_collection.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_crypt_shared_version/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_crypt_shared_version.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names_with_opts/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names_with_opts.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_default_database/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names.html
+%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names_with_opts.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_default_database.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_gridfs/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_gridfs.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_handshake_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_handshake_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_concern/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_concern.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_prefs/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_prefs.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_description/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_description.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_descriptions/index.html
 %%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_descriptions.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_status/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_status.html
-%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_uri/index.html
*** 1456 LINES SKIPPED ***


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a71d137.1f282.22aaef64>