git: 9c7fb31603bc - main - devel/mongo-c-driver: update to 1.23.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 11 Feb 2023 18:16:13 UTC
The branch main has been updated by fernape: URL: https://cgit.FreeBSD.org/ports/commit/?id=9c7fb31603bc82a493f9cf70d25e39eed7fd2dfd commit 9c7fb31603bc82a493f9cf70d25e39eed7fd2dfd Author: Hiroo Ono <hiroo.ono+freebsd@gmail.com> AuthorDate: 2023-02-11 17:24:46 +0000 Commit: Fernando Apesteguía <fernape@FreeBSD.org> CommitDate: 2023-02-11 18:11:53 +0000 devel/mongo-c-driver: update to 1.23.2 ChangeLog: https://github.com/mongodb/mongo-c-driver/releases/tag/1.23.2 PR: 269301 Reported by: ports@bsdserwis.com Reviewed by: hiroo.ono+freebsd@gmail.com --- devel/mongo-c-driver/Makefile | 71 +- devel/mongo-c-driver/distinfo | 6 +- ..._libmongoc_src_mongoc_mongoc-counters-private.h | 12 + .../files/patch-tests-test-mongoc-topology.c | 45 - devel/mongo-c-driver/pkg-plist | 1511 +++++++++++++++++++- 5 files changed, 1544 insertions(+), 101 deletions(-) diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile index 62b6ede2801d..ed38905ed3ea 100644 --- a/devel/mongo-c-driver/Makefile +++ b/devel/mongo-c-driver/Makefile @@ -1,23 +1,78 @@ PORTNAME= mongo-c-driver -PORTVERSION= 1.8.1 +PORTVERSION= 1.23.2 CATEGORIES= devel MAINTAINER= ports@bsdserwis.com COMMENT= C Driver for MongoDB -WWW= https://www.mongodb.org/ +WWW= https://github.com/mongodb/mongo-c-driver LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ - libbson-1.0.so:devel/libbson - +USES= cmake:noninja cpe pkgconfig USE_GITHUB= yes +CPE_VENDOR= mongodb GH_ACCOUNT= mongodb - -USES= cmake pkgconfig -#USES= cmake:noninja pkgconfig USE_LDCONFIG= yes + +LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ + libbson-1.0.so:devel/libbson \ + libzstd.so:archivers/zstd +SNAPPY_LIB_DEPENDS= libsnappy.so:archivers/snappy +SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 +DOCS_VARS= BUILD_DEPENDS+=sphinx-build:textproc/py-sphinx + +PATCH_STRIP= -p1 +CFLAGS+= -D__BSD_VISIBLE=1 LDFLAGS+= -pthread +OPTIONS_DEFINE= CRYPTOPROFILE DOCS RDTSCP SASL SNAPPY SSL +OPTIONS_DEFAULT= SSL +OPTIONS_SUB= yes +CRYPTOPROFILE_DESC= Use system crypto profile (require OPENSSL) +RDTSCP_DESC= Fast performance counters on Intel using the RDTSCP instruction +SSL_DESC= Enable TLS connections and SCRAM-SHA-1 authentication +SSL_USES= ssl +SSL_CMAKE_OFF= -DENABLE_SSL=OFF +CRYPTOPROFILE_IMPLIES= SSL + +CMAKE_ON= ENABLE_EXAMPLES +CMAKE_OFF= ENABLE_TESTS ENABLE_UNINSTALL +CMAKE_ARGS= -DENABLE_MONGOC=ON -DENABLE_BSON=SYSTEM +CMAKE_ARGS+= -DENABLE_ZLIB=SYSTEM -DENABLE_ZSTD=ON +CMAKE_ARGS+= -DBSON_HAVE_STRINGS_H=0 +DOCS_CMAKE_ON= -DENABLE_HTML_DOCS=ON -DENABLE_MAN_PAGES=ON +RDTSCP_CMAKE_ON= -DENABLE_RDTSCP=ON +RDTSCP_CMAKE_OFF= -DENABLE_RDTSCP=OFF +SASL_CMAKE_ON= -DENABLE_SASL=CYRUS +SASL_CMAKE_OFF= -DENABLE_SASL=OFF +SNAPPY_CMAKE_ON= -DENABLE_SNAPPY=ON +SNAPPY_CMAKE_OFF= -DENABLE_SNAPPY=OFF + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MSSL} +. if ${SSL_DEFAULT:Mlibressl*} +CMAKE_ARGS+= -DENABLE_SSL=LIBRESSL +. else +CMAKE_ARGS+= -DENABLE_SSL=OPENSSL +. endif +.endif + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300523 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_libmongoc_src_mongoc_mongoc-counters-private.h +.endif + +pre-configure-CRYPTOPROFILE-on: +.if ${SSL_DEFAULT:Mlibressl*} + @${ECHO_MSG} "CRYPTOPROFILE requires OpenSSL." + @${FALSE} +.endif + +post-extract: + ${ECHO} "${PORTVERSION}" > ${WRKSRC}/VERSION_CURRENT + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mongoc-stat + .include <bsd.port.mk> diff --git a/devel/mongo-c-driver/distinfo b/devel/mongo-c-driver/distinfo index a5803bd4cc37..85c00a497c9b 100644 --- a/devel/mongo-c-driver/distinfo +++ b/devel/mongo-c-driver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1508859086 -SHA256 (mongodb-mongo-c-driver-1.8.1_GH0.tar.gz) = 610c74fad07bc232071c37439c224049e767a3f081538be7c7783711f0bad806 -SIZE (mongodb-mongo-c-driver-1.8.1_GH0.tar.gz) = 2892108 +TIMESTAMP = 1673293086 +SHA256 (mongodb-mongo-c-driver-1.23.2_GH0.tar.gz) = a0f944ba659586d3a0751cdb544876ddf1ae2796efabba02a6af75efd8c61b1a +SIZE (mongodb-mongo-c-driver-1.23.2_GH0.tar.gz) = 6498979 diff --git a/devel/mongo-c-driver/files/extra-patch-src_libmongoc_src_mongoc_mongoc-counters-private.h b/devel/mongo-c-driver/files/extra-patch-src_libmongoc_src_mongoc_mongoc-counters-private.h new file mode 100644 index 000000000000..1c4e96a15357 --- /dev/null +++ b/devel/mongo-c-driver/files/extra-patch-src_libmongoc_src_mongoc_mongoc-counters-private.h @@ -0,0 +1,12 @@ +diff --git a/src/libmongoc/src/mongoc/mongoc-counters-private.h b/src/libmongoc/src/mongoc/mongoc-counters-private.h +index ddd4d4954..c22908af0 100644 +--- a/src/libmongoc/src/mongoc/mongoc-counters-private.h ++++ b/src/libmongoc/src/mongoc/mongoc-counters-private.h +@@ -28,6 +28,7 @@ + #include <sys/sysinfo.h> + #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \ + defined(__OpenBSD__) ++#include <sched.h> + #include <sys/types.h> + #include <sys/sysctl.h> + #include <sys/param.h> diff --git a/devel/mongo-c-driver/files/patch-tests-test-mongoc-topology.c b/devel/mongo-c-driver/files/patch-tests-test-mongoc-topology.c deleted file mode 100644 index aca87d5593a9..000000000000 --- a/devel/mongo-c-driver/files/patch-tests-test-mongoc-topology.c +++ /dev/null @@ -1,45 +0,0 @@ -This patch fixed the following build error. It can be removed in later -release since upstream removed compression checks. - -Reference: https://github.com/sunpoet/mongo-c-driver/commit/d35a67a404e3311257b7ad331e4f12d69ce5ec04 - ---- CMakeFiles/test-libmongoc.dir/tests/test-mongoc-topology.c.o --- -/wrkdirs/usr/ports/devel/mongo-c-driver/work/mongo-c-driver-1.8.1/tests/test-mongoc-topology.c:348:34: error: no member named 'compressors' in 'struct _mongoc_server_description_t' - BSON_ASSERT (bson_empty (&sd->compressors)); - ~~ ^ -/usr/local/include/libbson-1.0/bson.h:65:26: note: expanded from macro 'bson_empty' -#define bson_empty(b) (((b)->len == 5) || !bson_get_data ((b))[4]) - ^ -/usr/local/include/libbson-1.0/bson-macros.h:192:26: note: expanded from macro 'BSON_ASSERT' - if (!(BSON_LIKELY (test))) { \ - ^~~~ -/usr/local/include/libbson-1.0/bson-macros.h:231:45: note: expanded from macro 'BSON_LIKELY' -#define BSON_LIKELY(x) __builtin_expect (!!(x), 1) - ^ -/wrkdirs/usr/ports/devel/mongo-c-driver/work/mongo-c-driver-1.8.1/tests/test-mongoc-topology.c:348:34: error: no member named 'compressors' in 'struct _mongoc_server_description_t' - BSON_ASSERT (bson_empty (&sd->compressors)); - ~~ ^ -/usr/local/include/libbson-1.0/bson.h:65:60: note: expanded from macro 'bson_empty' -#define bson_empty(b) (((b)->len == 5) || !bson_get_data ((b))[4]) - ^ -/usr/local/include/libbson-1.0/bson-macros.h:192:26: note: expanded from macro 'BSON_ASSERT' - if (!(BSON_LIKELY (test))) { \ - ^~~~ -/usr/local/include/libbson-1.0/bson-macros.h:231:45: note: expanded from macro 'BSON_LIKELY' -#define BSON_LIKELY(x) __builtin_expect (!!(x), 1) - ^ -2 errors generated. -*** [CMakeFiles/test-libmongoc.dir/tests/test-mongoc-topology.c.o] Error code 1 - ---- tests/test-mongoc-topology.c.orig 2017-10-11 23:52:36 UTC -+++ tests/test-mongoc-topology.c -@@ -345,7 +345,9 @@ _test_topology_invalidate_server (bool p - BSON_ASSERT (bson_empty (&sd->hosts)); - BSON_ASSERT (bson_empty (&sd->passives)); - BSON_ASSERT (bson_empty (&sd->arbiters)); -+#ifdef MONGOC_ENABLE_COMPRESSION - BSON_ASSERT (bson_empty (&sd->compressors)); -+#endif - - mongoc_server_stream_cleanup (server_stream); - diff --git a/devel/mongo-c-driver/pkg-plist b/devel/mongo-c-driver/pkg-plist index fd7974b2712a..f9a1b9a654c3 100644 --- a/devel/mongo-c-driver/pkg-plist +++ b/devel/mongo-c-driver/pkg-plist @@ -1,55 +1,1476 @@ -include/libmongoc-1.0/mongoc-apm.h -include/libmongoc-1.0/mongoc-bulk-operation.h -include/libmongoc-1.0/mongoc-client-pool.h -include/libmongoc-1.0/mongoc-client.h -include/libmongoc-1.0/mongoc-collection.h -include/libmongoc-1.0/mongoc-config.h -include/libmongoc-1.0/mongoc-cursor.h -include/libmongoc-1.0/mongoc-database.h -include/libmongoc-1.0/mongoc-error.h -include/libmongoc-1.0/mongoc-find-and-modify.h -include/libmongoc-1.0/mongoc-flags.h -include/libmongoc-1.0/mongoc-gridfs-file-list.h -include/libmongoc-1.0/mongoc-gridfs-file-page.h -include/libmongoc-1.0/mongoc-gridfs-file.h -include/libmongoc-1.0/mongoc-gridfs.h -include/libmongoc-1.0/mongoc-handshake.h -include/libmongoc-1.0/mongoc-host-list.h -include/libmongoc-1.0/mongoc-index.h -include/libmongoc-1.0/mongoc-init.h -include/libmongoc-1.0/mongoc-iovec.h -include/libmongoc-1.0/mongoc-log.h -include/libmongoc-1.0/mongoc-macros.h -include/libmongoc-1.0/mongoc-matcher.h -include/libmongoc-1.0/mongoc-opcode.h -include/libmongoc-1.0/mongoc-rand.h -include/libmongoc-1.0/mongoc-read-concern.h -include/libmongoc-1.0/mongoc-read-prefs.h -include/libmongoc-1.0/mongoc-server-description.h -include/libmongoc-1.0/mongoc-socket.h -include/libmongoc-1.0/mongoc-ssl.h -include/libmongoc-1.0/mongoc-stream-buffered.h -include/libmongoc-1.0/mongoc-stream-file.h -include/libmongoc-1.0/mongoc-stream-gridfs.h -include/libmongoc-1.0/mongoc-stream-socket.h -include/libmongoc-1.0/mongoc-stream-tls-libressl.h -include/libmongoc-1.0/mongoc-stream-tls-openssl.h -include/libmongoc-1.0/mongoc-stream-tls.h -include/libmongoc-1.0/mongoc-stream.h -include/libmongoc-1.0/mongoc-topology-description.h -include/libmongoc-1.0/mongoc-uri.h -include/libmongoc-1.0/mongoc-version-functions.h -include/libmongoc-1.0/mongoc-version.h -include/libmongoc-1.0/mongoc-write-concern.h +bin/mongoc-stat include/libmongoc-1.0/mongoc.h +include/libmongoc-1.0/mongoc/mongoc-apm.h +include/libmongoc-1.0/mongoc/mongoc-bulk-operation.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-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-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 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 +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/libmongoc-1.0.so lib/libmongoc-1.0.so.0 -lib/libmongoc-1.0.so.1 +lib/libmongoc-1.0.so.0.0.0 lib/libmongoc-static-1.0.a libdata/pkgconfig/libmongoc-1.0.pc -libdata/pkgconfig/libmongoc-ssl-1.0.pc +%%SSL%%libdata/pkgconfig/libmongoc-ssl-1.0.pc libdata/pkgconfig/libmongoc-static-1.0.pc +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-add-dependencies-static.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-add-dependencies.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-add-include-directories.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-create-project.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-set-path.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_images/msvc-switch-architecture.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/ajax-loader.gif +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/basic.css +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/comment-bright.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/comment-close.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/comment.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/documentation_options.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/down-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/down.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/file.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/jquery-3.2.1.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/minus.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/plus.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/pygments.css +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/readable.css +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/searchtools.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/underscore-1.3.1.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/underscore.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/up-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/up.png +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/websupport.js +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/advanced-connections.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/aggregate.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/api.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/application-performance-monitoring.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/authentication.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/basic-troubleshooting.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/bulk.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/configuring_tls.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/connection-pooling.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/create-indexes.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/cursors.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/debugging.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/distinct-mapreduce.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/errors.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/full_index.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/gridfs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/guides.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/index.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/init-cleanup.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/installing.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/lifecycle.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/logging.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/matcher.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc-common-task-examples.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_new.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.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_duration.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.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.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.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.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.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.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.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.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.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.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_duration.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_destroy.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.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.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_keyvault_client.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.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.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_execute.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_hint.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert.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.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_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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_comment.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_hint.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_let.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_t.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_destroy.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_next.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_check_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cleanup.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple.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_destroy.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_datakey.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.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.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_decrypt.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_delete_key.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt.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.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.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.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_t.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.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_new.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.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.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.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.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.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_find_databases_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_collection.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_crypt_shared_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database.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.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_handshake_description.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_max_bson_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_max_message_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_description.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_descriptions.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_status.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_uri.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri_with_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_enable_auto_encryption.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_max_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_min_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new_with_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_pop.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_push.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_apm_callbacks.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_appname.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_error_api.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_server_api.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_ssl_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_try_pop.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_read_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_read_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_reset.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_select_server.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_abort_transaction.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_advance_cluster_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_advance_operation_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_append.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_commit_transaction.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_client.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_cluster_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_dirty.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_lsid.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_operation_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_server_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_transaction_state.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_in_transaction.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_start_transaction.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction_cb_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_apm_callbacks.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_appname.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_error_api.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_server_api.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_ssl_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_stream_initiator.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_start_session.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_watch.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_aggregate.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_simple.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_documents.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_many.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_ensure_index.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_estimated_document_count.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_last_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_name.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_bulk.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_many.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_keys_to_index_string.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_read_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_read_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_remove.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_replace_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_save.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_stats.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_many.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_validate.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_watch.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_clone.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_current.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error_document.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_batch_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_hint.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_host.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_limit.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_max_await_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_is_alive.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_more.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_next.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_batch_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_hint.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_limit.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_max_await_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_add_user.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_aggregate.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_simple.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_create_collection.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_name.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_has_collection.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_read_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_read_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_remove_all_users.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_remove_user.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_watch.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_write_command_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_delete_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_error_has_label.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_append.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_bypass_document_validation.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_fields.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_flags.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_max_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_sort.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_get_update.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_bypass_document_validation.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_fields.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_flags.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_max_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_sort.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_set_update.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_major_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_micro_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_minor_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_abort_upload.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_delete_by_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_download_to_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_find.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_open_download_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_open_upload_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_open_upload_stream_with_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_stream_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream_with_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file_from_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_drop.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_aliases.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_chunk_size.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_content_type.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_filename.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_length.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_md5.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_metadata.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_upload_date.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_next.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_opt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_readv.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_remove.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_save.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_seek.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_aliases.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_content_type.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_filename.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_md5.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_metadata.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_tell.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_writev.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one_by_filename.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_with_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_chunks.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_files.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_remove_by_filename.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_handshake_data_append.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_host_list_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_get_default.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_init.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_get_default.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_init.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_get_default.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_init.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_init.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_insert_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_iovec_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_matcher_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_matcher_match.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_matcher_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_matcher_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_init.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_is_set.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_set_value.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_value.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_query_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_add.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_seed.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_status.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_append.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_get_level.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_is_default.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_set_level.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_mode_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_add_tag.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_hedge.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_max_staleness_seconds.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_mode.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_tags.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_is_valid.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_hedge.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_max_staleness_seconds.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_mode.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_tags.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_remove_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_reply_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_deprecation_errors.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_deprecation_errors.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_strict.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_version.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_strict.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_version_from_string.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_version_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_version_to_string.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_hello_response.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_host.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_id.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_ismaster.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_last_update_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_new_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_round_trip_time.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_type.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_descriptions_destroy_all.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_clone.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_causal_consistency.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_default_transaction_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_snapshot.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_transaction_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_set_causal_consistency.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_set_default_transaction_opts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_set_snapshot.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_accept.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_bind.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_close.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_connect.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_errno.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getnameinfo.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getsockname.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_listen.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_recv.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_send.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_sendv.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_setsockopt.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_get_default.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_close.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_cork.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_get_fd.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new_for_path.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_flush.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_get_base_stream.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_gridfs_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_read.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_readv.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_setsockopt.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_should_retry.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_get_socket.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_timed_out.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_tls_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_uncork.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_write.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_writev.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_get_servers.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_has_readable_server.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_has_writable_server.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_new_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_type.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opt_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_clone.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_get_max_commit_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_get_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_get_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_set_max_commit_time_ms.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_set_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_set_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_set_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_state_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_update_flags_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_copy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_destroy.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_mechanism.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_source.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_compressors.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_database.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_hosts.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_mechanism_properties.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_option_as_bool.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_option_as_int32.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_option_as_int64.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_option_as_utf8.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_options.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_password.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs_t.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_replica_set.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_service.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_srv_hostname.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_srv_service_name.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_ssl.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_string.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_tls.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_username.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_write_concern.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_has_option.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new_for_host_port.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new_with_error.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_bool.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int32.html +%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int64.html *** 735 LINES SKIPPED ***