Thu Feb 6 20:20:42 2020 UTC ()
mongo-c-driver: updated to 1.16.1

mongo-c-driver 1.16.1

I'm pleased to announce version 1.16.1 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
It is my pleasure to announce libbson 1.16.1.

Features:
Add bson_isspace, a safer isspace alternative.

libmongoc
It is my pleasure to announce the MongoDB C Driver 1.16.1.

Bug fixes:
Fix listed library dependency on mongoc_static target when building with libmongocrypt.
Replace a call of free to bson_free.
Vendor Sphinx basic theme and correctly list static files for docs.
Fix a compilation warning introduced in 1.16.0.

mongo-c-driver 1.16.0

I'm pleased to announce version 1.16.0 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
It is my pleasure to announce libbson 1.16.0.

Bug fixes:
Fix crash if an empty BSON binary value is copied and then appended.
Fix out-of-bounds read when parsing JSON.
Fix out-of-bounds read when parsing base64.

libmongoc
It is my pleasure to announce the MongoDB C Driver 1.16.0.

Features:
Support Client-side Field Level Encryption.
Support ability to pass an index hint to update operations.
Add cmake export targets.

Bug fixes:
Fix a bug with Windows SSPI failing to authenticate with GSSAPI when using
pooled clients for certain operations.
Fix behavior for bulk writes that retry to keep track of the successful server.
Remove hard limit of 1024 characters for SRV response.
Fix racy crash when using client pool against a sharded cluster if a server is invalidated shortly before a new socket is opened against it.
Remove unnecessary library dependencies causing overlinking.
Ensure server proof has been validated during SCRAM conversation.

mongo-c-driver 1.15.3

I'm pleased to announce version 1.15.3 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
It is my pleasure to announce libbson 1.15.3.
No changes since 1.15.2; release to keep pace with libmongoc's version.

libmongoc
It is my pleasure to announce the MongoDB C Driver 1.15.3.

Bug fixes:
* Fix a hang on macOS when connecting to a server over TLS
* Add zstd as a dependency when libmongoc static library is compiled with zstd support
* Fix compilation on AIX 6.1

mongo-c-driver 1.15.2

I'm pleased to announce version 1.15.2 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
No changes since 1.15.1; release to keep pace with libmongoc's version.

libmongoc

Bug fixes:
Prevent mongoc_transaction_opts_set_max_commit_time_ms from applying to subsequent transactions that should be using the default.
Do not report the initial error if a retry for a change stream function (mongoc_collection_watch, mongoc_database_watch, or mongoc_client_watch) succeeds

mongo-c-driver 1.15.1

I'm pleased to announce version 1.15.1 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
No change since 1.15.0; released to keep pace with libmongoc's version.

libmongoc
It is my pleasure to announce the MongoDB C Driver 1.15.1.

Bug fixes:
Fix change stream resume logic when no documents received
Reduce the required cmake version to build with zstd support
Minor fixes to mongos pinning logic
Do not resume a change stream on NonResumableChangeStreamError

mongo-c-driver 1.15.0

I'm pleased to announce version 1.15.0 of libbson and libmongoc,
the libraries constituting the MongoDB C Driver.

libbson
No change since 1.14.1; released to keep pace with libmongoc's version.

libmongoc
It is my pleasure to announce the MongoDB C Driver 1.15.0. This release adds
support for MongoDB 4.2 features.

Features:
Support for sharded transactions on MongoDB sharded clusters 4.2+.
Add convenient transaction runner (mongoc_client_session_with_transaction),
which accepts a callback and performs appropriate retry logic.
Add a new transaction option to specify maximum time to wait for a commit,
mongoc_transaction_opts_set_max_commit_time_ms.
Add URI option "retryReads=true" safely and automatically retries certain
read operations if the server is a MongoDB 3.6+. Note, this may require applications to adjust any custom retry logic to prevent inadvertently retrying for too long
Poll SRV records to mongos servers periodically.
Keep connections alive after a primary stepdown detected.
Standardizes URI options supported across all spec-compliant MongoDB drivers.
"retryWrites" URI option now defaults to true (requires crypto for session
support).
Send any aggregate with $out or $merge stage to a primary.
Add the ability to specify an aggregate pipeline as an update document.
Add a database aggregate helper, mongoc_database_aggregate.
Add option for change streams, "startAfter".
Add mongoc_change_stream_get_resume_token, which returns the resume token
which should be used to resume a change stream.
Add support for zstd compression.

Bug fixes:
Correctly report an error in mongoc_change_stream_next if the resume token
(_id) is not a document. Previously, an error was only reported if the
field was missing.
Fix mongoc_collection_update with MONGOC_UPDATE_MULTI_UPDATE,
mongoc_collection_remove, and mongoc_collection_delete when retryWrites
was enabled. They would fail previously.
Command options are now correctly taken into account when batching bulk
writes for OP_QUERY. It was possible to exceed the maximum document size
before.
Fix a crash if a multi-batch bulk write with OP_MSG errored on a batch.


(adam)
diff -r1.40 -r1.41 pkgsrc/databases/mongo-c-driver/Makefile
diff -r1.17 -r1.18 pkgsrc/databases/mongo-c-driver/PLIST
diff -r1.35 -r1.36 pkgsrc/databases/mongo-c-driver/distinfo

cvs diff -r1.40 -r1.41 pkgsrc/databases/mongo-c-driver/Makefile (switch to unified diff)

--- pkgsrc/databases/mongo-c-driver/Makefile 2020/01/18 21:47:59 1.40
+++ pkgsrc/databases/mongo-c-driver/Makefile 2020/02/06 20:20:42 1.41
@@ -1,52 +1,51 @@ @@ -1,52 +1,51 @@
1# $NetBSD: Makefile,v 1.40 2020/01/18 21:47:59 jperkin Exp $ 1# $NetBSD: Makefile,v 1.41 2020/02/06 20:20:42 adam Exp $
2 2
3DISTNAME= mongo-c-driver-1.14.0 3DISTNAME= mongo-c-driver-1.16.1
4PKGREVISION= 2 
5CATEGORIES= databases 4CATEGORIES= databases
6MASTER_SITES= ${MASTER_SITE_GITHUB:=mongodb/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=mongodb/}
7GITHUB_RELEASE= ${PKGVERSION_NOREV} 6GITHUB_RELEASE= ${PKGVERSION_NOREV}
8 7
9MAINTAINER= fhajny@NetBSD.org 8MAINTAINER= fhajny@NetBSD.org
10HOMEPAGE= https://github.com/mongodb/mongo-c-driver 9HOMEPAGE= https://github.com/mongodb/mongo-c-driver
11COMMENT= MongoDB client library written in C 10COMMENT= MongoDB client library written in C
12LICENSE= apache-2.0 11LICENSE= apache-2.0
13 12
14# Requires shm_open() 13# Requires shm_open()
15NOT_FOR_PLATFORM+= OpenBSD-*-* 14NOT_FOR_PLATFORM+= OpenBSD-*-*
16 15
17USE_CMAKE= yes 16USE_CMAKE= yes
18USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
19 18
20CMAKE_ARGS+= -DENABLE_ICU=ON 19CMAKE_ARGS+= -DENABLE_ICU=ON
21#CMAKE_ARGS+= -DENABLE_MAN_PAGES=ON 20#CMAKE_ARGS+= -DENABLE_MAN_PAGES=ON
22CMAKE_ARGS+= -DENABLE_SNAPPY=SYSTEM 21CMAKE_ARGS+= -DENABLE_SNAPPY=SYSTEM
23CMAKE_ARGS+= -DENABLE_UNINSTALL=OFF 22CMAKE_ARGS+= -DENABLE_UNINSTALL=OFF
24CMAKE_ARGS+= -DENABLE_ZLIB=SYSTEM 23CMAKE_ARGS+= -DENABLE_ZLIB=SYSTEM
25 24
26PKGCONFIG_OVERRIDE+= src/libbson/src/libbson-1.0.pc.in 25PKGCONFIG_OVERRIDE+= src/libbson/src/libbson-1.0.pc.in
27PKGCONFIG_OVERRIDE+= src/libbson/src/libbson-static-1.0.pc.in 26PKGCONFIG_OVERRIDE+= src/libbson/src/libbson-static-1.0.pc.in
28PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-1.0.pc.in 27PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-1.0.pc.in
29PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-ssl-1.0.pc.in 28PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-ssl-1.0.pc.in
30PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-static-1.0.pc.in 29PKGCONFIG_OVERRIDE+= src/libmongoc/src/libmongoc-static-1.0.pc.in
31 30
32INSTALLATION_DIRS+= ${PKGMANDIR}/man3 31INSTALLATION_DIRS+= ${PKGMANDIR}/man3
33 32
34PLIST_VARS+= unix 33PLIST_VARS+= unix
35 34
36.include "../../mk/bsd.prefs.mk" 35.include "../../mk/bsd.prefs.mk"
37.if ${OPSYS} != "Darwin" 36.if ${OPSYS} != "Darwin"
38PLIST.unix= yes 37PLIST.unix= yes
39.endif 38.endif
40 39
41.include "options.mk" 40.include "options.mk"
42 41
43post-install: 42post-install:
44.for lib in libbson libmongoc 43.for lib in libbson libmongoc
45 ${INSTALL_MAN} ${WRKSRC}/src/${lib}/doc/man/*.3 \ 44 ${INSTALL_MAN} ${WRKSRC}/src/${lib}/doc/man/*.3 \
46 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 45 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3
47.endfor 46.endfor
48 47
49.include "../../devel/snappy/buildlink3.mk" 48.include "../../devel/snappy/buildlink3.mk"
50.include "../../devel/zlib/buildlink3.mk" 49.include "../../devel/zlib/buildlink3.mk"
51.include "../../textproc/icu/buildlink3.mk" 50.include "../../textproc/icu/buildlink3.mk"
52.include "../../mk/bsd.pkg.mk" 51.include "../../mk/bsd.pkg.mk"

cvs diff -r1.17 -r1.18 pkgsrc/databases/mongo-c-driver/PLIST (switch to unified diff)

--- pkgsrc/databases/mongo-c-driver/PLIST 2019/03/05 14:24:13 1.17
+++ pkgsrc/databases/mongo-c-driver/PLIST 2020/02/06 20:20:42 1.18
@@ -1,897 +1,959 @@ @@ -1,897 +1,959 @@
1@comment $NetBSD: PLIST,v 1.17 2019/03/05 14:24:13 adam Exp $ 1@comment $NetBSD: PLIST,v 1.18 2020/02/06 20:20:42 adam Exp $
2${PLIST.unix}bin/mongoc-stat 2${PLIST.unix}bin/mongoc-stat
3include/libbson-1.0/bson.h 3include/libbson-1.0/bson.h
4include/libbson-1.0/bson/bcon.h 4include/libbson-1.0/bson/bcon.h
5include/libbson-1.0/bson/bson-atomic.h 5include/libbson-1.0/bson/bson-atomic.h
6include/libbson-1.0/bson/bson-clock.h 6include/libbson-1.0/bson/bson-clock.h
7include/libbson-1.0/bson/bson-compat.h 7include/libbson-1.0/bson/bson-compat.h
8include/libbson-1.0/bson/bson-config.h 8include/libbson-1.0/bson/bson-config.h
9include/libbson-1.0/bson/bson-context.h 9include/libbson-1.0/bson/bson-context.h
10include/libbson-1.0/bson/bson-decimal128.h 10include/libbson-1.0/bson/bson-decimal128.h
11include/libbson-1.0/bson/bson-endian.h 11include/libbson-1.0/bson/bson-endian.h
12include/libbson-1.0/bson/bson-error.h 12include/libbson-1.0/bson/bson-error.h
13include/libbson-1.0/bson/bson-iter.h 13include/libbson-1.0/bson/bson-iter.h
14include/libbson-1.0/bson/bson-json.h 14include/libbson-1.0/bson/bson-json.h
15include/libbson-1.0/bson/bson-keys.h 15include/libbson-1.0/bson/bson-keys.h
16include/libbson-1.0/bson/bson-macros.h 16include/libbson-1.0/bson/bson-macros.h
17include/libbson-1.0/bson/bson-md5.h 17include/libbson-1.0/bson/bson-md5.h
18include/libbson-1.0/bson/bson-memory.h 18include/libbson-1.0/bson/bson-memory.h
19include/libbson-1.0/bson/bson-oid.h 19include/libbson-1.0/bson/bson-oid.h
20include/libbson-1.0/bson/bson-prelude.h 20include/libbson-1.0/bson/bson-prelude.h
21include/libbson-1.0/bson/bson-reader.h 21include/libbson-1.0/bson/bson-reader.h
22include/libbson-1.0/bson/bson-string.h 22include/libbson-1.0/bson/bson-string.h
23include/libbson-1.0/bson/bson-types.h 23include/libbson-1.0/bson/bson-types.h
24include/libbson-1.0/bson/bson-utf8.h 24include/libbson-1.0/bson/bson-utf8.h
25include/libbson-1.0/bson/bson-value.h 25include/libbson-1.0/bson/bson-value.h
26include/libbson-1.0/bson/bson-version-functions.h 26include/libbson-1.0/bson/bson-version-functions.h
27include/libbson-1.0/bson/bson-version.h 27include/libbson-1.0/bson/bson-version.h
28include/libbson-1.0/bson/bson-writer.h 28include/libbson-1.0/bson/bson-writer.h
29include/libbson-1.0/bson/bson.h 29include/libbson-1.0/bson/bson.h
30include/libmongoc-1.0/mongoc.h 30include/libmongoc-1.0/mongoc.h
31include/libmongoc-1.0/mongoc/mongoc-apm.h 31include/libmongoc-1.0/mongoc/mongoc-apm.h
32include/libmongoc-1.0/mongoc/mongoc-bulk-operation.h 32include/libmongoc-1.0/mongoc/mongoc-bulk-operation.h
33include/libmongoc-1.0/mongoc/mongoc-change-stream.h 33include/libmongoc-1.0/mongoc/mongoc-change-stream.h
34include/libmongoc-1.0/mongoc/mongoc-client-pool.h 34include/libmongoc-1.0/mongoc/mongoc-client-pool.h
35include/libmongoc-1.0/mongoc/mongoc-client-session.h 35include/libmongoc-1.0/mongoc/mongoc-client-session.h
 36include/libmongoc-1.0/mongoc/mongoc-client-side-encryption.h
36include/libmongoc-1.0/mongoc/mongoc-client.h 37include/libmongoc-1.0/mongoc/mongoc-client.h
37include/libmongoc-1.0/mongoc/mongoc-collection.h 38include/libmongoc-1.0/mongoc/mongoc-collection.h
38include/libmongoc-1.0/mongoc/mongoc-config.h 39include/libmongoc-1.0/mongoc/mongoc-config.h
39include/libmongoc-1.0/mongoc/mongoc-cursor.h 40include/libmongoc-1.0/mongoc/mongoc-cursor.h
40include/libmongoc-1.0/mongoc/mongoc-database.h 41include/libmongoc-1.0/mongoc/mongoc-database.h
41include/libmongoc-1.0/mongoc/mongoc-error.h 42include/libmongoc-1.0/mongoc/mongoc-error.h
42include/libmongoc-1.0/mongoc/mongoc-find-and-modify.h 43include/libmongoc-1.0/mongoc/mongoc-find-and-modify.h
43include/libmongoc-1.0/mongoc/mongoc-flags.h 44include/libmongoc-1.0/mongoc/mongoc-flags.h
44include/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h 45include/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h
45include/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h 46include/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h
46include/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h 47include/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h
47include/libmongoc-1.0/mongoc/mongoc-gridfs-file.h 48include/libmongoc-1.0/mongoc/mongoc-gridfs-file.h
48include/libmongoc-1.0/mongoc/mongoc-gridfs.h 49include/libmongoc-1.0/mongoc/mongoc-gridfs.h
49include/libmongoc-1.0/mongoc/mongoc-handshake.h 50include/libmongoc-1.0/mongoc/mongoc-handshake.h
50include/libmongoc-1.0/mongoc/mongoc-host-list.h 51include/libmongoc-1.0/mongoc/mongoc-host-list.h
51include/libmongoc-1.0/mongoc/mongoc-index.h 52include/libmongoc-1.0/mongoc/mongoc-index.h
52include/libmongoc-1.0/mongoc/mongoc-init.h 53include/libmongoc-1.0/mongoc/mongoc-init.h
53include/libmongoc-1.0/mongoc/mongoc-iovec.h 54include/libmongoc-1.0/mongoc/mongoc-iovec.h
54include/libmongoc-1.0/mongoc/mongoc-log.h 55include/libmongoc-1.0/mongoc/mongoc-log.h
55include/libmongoc-1.0/mongoc/mongoc-macros.h 56include/libmongoc-1.0/mongoc/mongoc-macros.h
56include/libmongoc-1.0/mongoc/mongoc-matcher.h 57include/libmongoc-1.0/mongoc/mongoc-matcher.h
57include/libmongoc-1.0/mongoc/mongoc-opcode.h 58include/libmongoc-1.0/mongoc/mongoc-opcode.h
58include/libmongoc-1.0/mongoc/mongoc-prelude.h 59include/libmongoc-1.0/mongoc/mongoc-prelude.h
59include/libmongoc-1.0/mongoc/mongoc-rand.h 60include/libmongoc-1.0/mongoc/mongoc-rand.h
60include/libmongoc-1.0/mongoc/mongoc-read-concern.h 61include/libmongoc-1.0/mongoc/mongoc-read-concern.h
61include/libmongoc-1.0/mongoc/mongoc-read-prefs.h 62include/libmongoc-1.0/mongoc/mongoc-read-prefs.h
62include/libmongoc-1.0/mongoc/mongoc-server-description.h 63include/libmongoc-1.0/mongoc/mongoc-server-description.h
63include/libmongoc-1.0/mongoc/mongoc-socket.h 64include/libmongoc-1.0/mongoc/mongoc-socket.h
64include/libmongoc-1.0/mongoc/mongoc-ssl.h 65include/libmongoc-1.0/mongoc/mongoc-ssl.h
65include/libmongoc-1.0/mongoc/mongoc-stream-buffered.h 66include/libmongoc-1.0/mongoc/mongoc-stream-buffered.h
66include/libmongoc-1.0/mongoc/mongoc-stream-file.h 67include/libmongoc-1.0/mongoc/mongoc-stream-file.h
67include/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h 68include/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h
68include/libmongoc-1.0/mongoc/mongoc-stream-socket.h 69include/libmongoc-1.0/mongoc/mongoc-stream-socket.h
69include/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h 70include/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h
70include/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h 71include/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h
71include/libmongoc-1.0/mongoc/mongoc-stream-tls.h 72include/libmongoc-1.0/mongoc/mongoc-stream-tls.h
72include/libmongoc-1.0/mongoc/mongoc-stream.h 73include/libmongoc-1.0/mongoc/mongoc-stream.h
73include/libmongoc-1.0/mongoc/mongoc-topology-description.h 74include/libmongoc-1.0/mongoc/mongoc-topology-description.h
74include/libmongoc-1.0/mongoc/mongoc-uri.h 75include/libmongoc-1.0/mongoc/mongoc-uri.h
75include/libmongoc-1.0/mongoc/mongoc-version-functions.h 76include/libmongoc-1.0/mongoc/mongoc-version-functions.h
76include/libmongoc-1.0/mongoc/mongoc-version.h 77include/libmongoc-1.0/mongoc/mongoc-version.h
77include/libmongoc-1.0/mongoc/mongoc-write-concern.h 78include/libmongoc-1.0/mongoc/mongoc-write-concern.h
78include/libmongoc-1.0/mongoc/mongoc.h 79include/libmongoc-1.0/mongoc/mongoc.h
 80lib/cmake/bson-1.0/bson-1.0-config-version.cmake
 81lib/cmake/bson-1.0/bson-1.0-config.cmake
 82lib/cmake/bson-1.0/bson-targets-relwithdebinfo.cmake
 83lib/cmake/bson-1.0/bson-targets.cmake
79lib/cmake/libbson-1.0/libbson-1.0-config-version.cmake 84lib/cmake/libbson-1.0/libbson-1.0-config-version.cmake
80lib/cmake/libbson-1.0/libbson-1.0-config.cmake 85lib/cmake/libbson-1.0/libbson-1.0-config.cmake
81lib/cmake/libbson-static-1.0/libbson-static-1.0-config-version.cmake 86lib/cmake/libbson-static-1.0/libbson-static-1.0-config-version.cmake
82lib/cmake/libbson-static-1.0/libbson-static-1.0-config.cmake 87lib/cmake/libbson-static-1.0/libbson-static-1.0-config.cmake
83lib/cmake/libmongoc-1.0/libmongoc-1.0-config-version.cmake 88lib/cmake/libmongoc-1.0/libmongoc-1.0-config-version.cmake
84lib/cmake/libmongoc-1.0/libmongoc-1.0-config.cmake 89lib/cmake/libmongoc-1.0/libmongoc-1.0-config.cmake
85lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config-version.cmake 90lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config-version.cmake
86lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config.cmake 91lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config.cmake
 92lib/cmake/mongoc-1.0/mongoc-1.0-config-version.cmake
 93lib/cmake/mongoc-1.0/mongoc-1.0-config.cmake
 94lib/cmake/mongoc-1.0/mongoc-targets-relwithdebinfo.cmake
 95lib/cmake/mongoc-1.0/mongoc-targets.cmake
87lib/libbson-1.0.so 96lib/libbson-1.0.so
88lib/libbson-1.0.so.0 97lib/libbson-1.0.so.0
89lib/libbson-1.0.so.0.0.0 98lib/libbson-1.0.so.0.0.0
90lib/libbson-static-1.0.a 99lib/libbson-static-1.0.a
91lib/libmongoc-1.0.so 100lib/libmongoc-1.0.so
92lib/libmongoc-1.0.so.0 101lib/libmongoc-1.0.so.0
93lib/libmongoc-1.0.so.0.0.0 102lib/libmongoc-1.0.so.0.0.0
94lib/libmongoc-static-1.0.a 103lib/libmongoc-static-1.0.a
95lib/pkgconfig/libbson-1.0.pc 104lib/pkgconfig/libbson-1.0.pc
96lib/pkgconfig/libbson-static-1.0.pc 105lib/pkgconfig/libbson-static-1.0.pc
97lib/pkgconfig/libmongoc-1.0.pc 106lib/pkgconfig/libmongoc-1.0.pc
98${PLIST.ssl}lib/pkgconfig/libmongoc-ssl-1.0.pc 107${PLIST.ssl}lib/pkgconfig/libmongoc-ssl-1.0.pc
99lib/pkgconfig/libmongoc-static-1.0.pc 108lib/pkgconfig/libmongoc-static-1.0.pc
100man/man3/bson_append_array.3 109man/man3/bson_append_array.3
101man/man3/bson_append_array_begin.3 110man/man3/bson_append_array_begin.3
102man/man3/bson_append_array_end.3 111man/man3/bson_append_array_end.3
103man/man3/bson_append_binary.3 112man/man3/bson_append_binary.3
104man/man3/bson_append_bool.3 113man/man3/bson_append_bool.3
105man/man3/bson_append_code.3 114man/man3/bson_append_code.3
106man/man3/bson_append_code_with_scope.3 115man/man3/bson_append_code_with_scope.3
107man/man3/bson_append_date_time.3 116man/man3/bson_append_date_time.3
108man/man3/bson_append_dbpointer.3 117man/man3/bson_append_dbpointer.3
109man/man3/bson_append_decimal128.3 118man/man3/bson_append_decimal128.3
110man/man3/bson_append_document.3 119man/man3/bson_append_document.3
111man/man3/bson_append_document_begin.3 120man/man3/bson_append_document_begin.3
112man/man3/bson_append_document_end.3 121man/man3/bson_append_document_end.3
113man/man3/bson_append_double.3 122man/man3/bson_append_double.3
114man/man3/bson_append_int32.3 123man/man3/bson_append_int32.3
115man/man3/bson_append_int64.3 124man/man3/bson_append_int64.3
116man/man3/bson_append_iter.3 125man/man3/bson_append_iter.3
117man/man3/bson_append_maxkey.3 126man/man3/bson_append_maxkey.3
118man/man3/bson_append_minkey.3 127man/man3/bson_append_minkey.3
119man/man3/bson_append_now_utc.3 128man/man3/bson_append_now_utc.3
120man/man3/bson_append_null.3 129man/man3/bson_append_null.3
121man/man3/bson_append_oid.3 130man/man3/bson_append_oid.3
122man/man3/bson_append_regex.3 131man/man3/bson_append_regex.3
123man/man3/bson_append_regex_w_len.3 132man/man3/bson_append_regex_w_len.3
124man/man3/bson_append_symbol.3 133man/man3/bson_append_symbol.3
125man/man3/bson_append_time_t.3 134man/man3/bson_append_time_t.3
126man/man3/bson_append_timestamp.3 135man/man3/bson_append_timestamp.3
127man/man3/bson_append_timeval.3 136man/man3/bson_append_timeval.3
128man/man3/bson_append_undefined.3 137man/man3/bson_append_undefined.3
129man/man3/bson_append_utf8.3 138man/man3/bson_append_utf8.3
130man/man3/bson_append_value.3 139man/man3/bson_append_value.3
131man/man3/bson_array_as_json.3 140man/man3/bson_array_as_json.3
132man/man3/bson_as_canonical_extended_json.3 141man/man3/bson_as_canonical_extended_json.3
133man/man3/bson_as_json.3 142man/man3/bson_as_json.3
134man/man3/bson_as_relaxed_extended_json.3 143man/man3/bson_as_relaxed_extended_json.3
135man/man3/bson_ascii_strtoll.3 144man/man3/bson_ascii_strtoll.3
136man/man3/bson_character_and_string_routines.3 145man/man3/bson_character_and_string_routines.3
137man/man3/bson_check_version.3 146man/man3/bson_check_version.3
138man/man3/bson_compare.3 147man/man3/bson_compare.3
139man/man3/bson_concat.3 148man/man3/bson_concat.3
140man/man3/bson_context_destroy.3 149man/man3/bson_context_destroy.3
141man/man3/bson_context_get_default.3 150man/man3/bson_context_get_default.3
142man/man3/bson_context_new.3 151man/man3/bson_context_new.3
143man/man3/bson_context_t.3 152man/man3/bson_context_t.3
144man/man3/bson_copy.3 153man/man3/bson_copy.3
145man/man3/bson_copy_to.3 154man/man3/bson_copy_to.3
146man/man3/bson_copy_to_excluding.3 155man/man3/bson_copy_to_excluding.3
147man/man3/bson_copy_to_excluding_noinit.3 156man/man3/bson_copy_to_excluding_noinit.3
148man/man3/bson_copy_to_excluding_noinit_va.3 157man/man3/bson_copy_to_excluding_noinit_va.3
149man/man3/bson_count_keys.3 158man/man3/bson_count_keys.3
150man/man3/bson_creating.3 159man/man3/bson_creating.3
151man/man3/bson_cross_platform_notes.3 160man/man3/bson_cross_platform_notes.3
152man/man3/bson_decimal128_from_string.3 161man/man3/bson_decimal128_from_string.3
153man/man3/bson_decimal128_from_string_w_len.3 162man/man3/bson_decimal128_from_string_w_len.3
154man/man3/bson_decimal128_t.3 163man/man3/bson_decimal128_t.3
155man/man3/bson_decimal128_to_string.3 164man/man3/bson_decimal128_to_string.3
156man/man3/bson_destroy.3 165man/man3/bson_destroy.3
157man/man3/bson_destroy_with_steal.3 166man/man3/bson_destroy_with_steal.3
158man/man3/bson_endianness.3 167man/man3/bson_endianness.3
159man/man3/bson_equal.3 168man/man3/bson_equal.3
160man/man3/bson_error_t.3 169man/man3/bson_error_t.3
161man/man3/bson_errors.3 170man/man3/bson_errors.3
162man/man3/bson_free.3 171man/man3/bson_free.3
163man/man3/bson_get_data.3 172man/man3/bson_get_data.3
164man/man3/bson_get_major_version.3 173man/man3/bson_get_major_version.3
165man/man3/bson_get_micro_version.3 174man/man3/bson_get_micro_version.3
166man/man3/bson_get_minor_version.3 175man/man3/bson_get_minor_version.3
167man/man3/bson_get_monotonic_time.3 176man/man3/bson_get_monotonic_time.3
168man/man3/bson_get_version.3 177man/man3/bson_get_version.3
169man/man3/bson_guides.3 178man/man3/bson_guides.3
170man/man3/bson_has_field.3 179man/man3/bson_has_field.3
171man/man3/bson_include_and_link.3 180man/man3/bson_include_and_link.3
172man/man3/bson_init.3 181man/man3/bson_init.3
173man/man3/bson_init_from_json.3 182man/man3/bson_init_from_json.3
174man/man3/bson_init_static.3 183man/man3/bson_init_static.3
 184man/man3/bson_isspace.3
175man/man3/bson_iter_array.3 185man/man3/bson_iter_array.3
176man/man3/bson_iter_as_bool.3 186man/man3/bson_iter_as_bool.3
177man/man3/bson_iter_as_double.3 187man/man3/bson_iter_as_double.3
178man/man3/bson_iter_as_int64.3 188man/man3/bson_iter_as_int64.3
179man/man3/bson_iter_binary.3 189man/man3/bson_iter_binary.3
180man/man3/bson_iter_bool.3 190man/man3/bson_iter_bool.3
181man/man3/bson_iter_code.3 191man/man3/bson_iter_code.3
182man/man3/bson_iter_codewscope.3 192man/man3/bson_iter_codewscope.3
183man/man3/bson_iter_date_time.3 193man/man3/bson_iter_date_time.3
184man/man3/bson_iter_dbpointer.3 194man/man3/bson_iter_dbpointer.3
185man/man3/bson_iter_decimal128.3 195man/man3/bson_iter_decimal128.3
186man/man3/bson_iter_document.3 196man/man3/bson_iter_document.3
187man/man3/bson_iter_double.3 197man/man3/bson_iter_double.3
188man/man3/bson_iter_dup_utf8.3 198man/man3/bson_iter_dup_utf8.3
189man/man3/bson_iter_find.3 199man/man3/bson_iter_find.3
190man/man3/bson_iter_find_case.3 200man/man3/bson_iter_find_case.3
191man/man3/bson_iter_find_descendant.3 201man/man3/bson_iter_find_descendant.3
192man/man3/bson_iter_find_w_len.3 202man/man3/bson_iter_find_w_len.3
193man/man3/bson_iter_init.3 203man/man3/bson_iter_init.3
194man/man3/bson_iter_init_find.3 204man/man3/bson_iter_init_find.3
195man/man3/bson_iter_init_find_case.3 205man/man3/bson_iter_init_find_case.3
196man/man3/bson_iter_init_find_w_len.3 206man/man3/bson_iter_init_find_w_len.3
197man/man3/bson_iter_init_from_data.3 207man/man3/bson_iter_init_from_data.3
198man/man3/bson_iter_init_from_data_at_offset.3 208man/man3/bson_iter_init_from_data_at_offset.3
199man/man3/bson_iter_int32.3 209man/man3/bson_iter_int32.3
200man/man3/bson_iter_int64.3 210man/man3/bson_iter_int64.3
201man/man3/bson_iter_key.3 211man/man3/bson_iter_key.3
202man/man3/bson_iter_key_len.3 212man/man3/bson_iter_key_len.3
203man/man3/bson_iter_next.3 213man/man3/bson_iter_next.3
204man/man3/bson_iter_offset.3 214man/man3/bson_iter_offset.3
205man/man3/bson_iter_oid.3 215man/man3/bson_iter_oid.3
206man/man3/bson_iter_overwrite_bool.3 216man/man3/bson_iter_overwrite_bool.3
207man/man3/bson_iter_overwrite_date_time.3 217man/man3/bson_iter_overwrite_date_time.3
208man/man3/bson_iter_overwrite_decimal128.3 218man/man3/bson_iter_overwrite_decimal128.3
209man/man3/bson_iter_overwrite_double.3 219man/man3/bson_iter_overwrite_double.3
210man/man3/bson_iter_overwrite_int32.3 220man/man3/bson_iter_overwrite_int32.3
211man/man3/bson_iter_overwrite_int64.3 221man/man3/bson_iter_overwrite_int64.3
212man/man3/bson_iter_overwrite_oid.3 222man/man3/bson_iter_overwrite_oid.3
213man/man3/bson_iter_overwrite_timestamp.3 223man/man3/bson_iter_overwrite_timestamp.3
214man/man3/bson_iter_recurse.3 224man/man3/bson_iter_recurse.3
215man/man3/bson_iter_regex.3 225man/man3/bson_iter_regex.3
216man/man3/bson_iter_symbol.3 226man/man3/bson_iter_symbol.3
217man/man3/bson_iter_t.3 227man/man3/bson_iter_t.3
218man/man3/bson_iter_time_t.3 228man/man3/bson_iter_time_t.3
219man/man3/bson_iter_timestamp.3 229man/man3/bson_iter_timestamp.3
220man/man3/bson_iter_timeval.3 230man/man3/bson_iter_timeval.3
221man/man3/bson_iter_type.3 231man/man3/bson_iter_type.3
222man/man3/bson_iter_utf8.3 232man/man3/bson_iter_utf8.3
223man/man3/bson_iter_value.3 233man/man3/bson_iter_value.3
224man/man3/bson_iter_visit_all.3 234man/man3/bson_iter_visit_all.3
225man/man3/bson_json.3 235man/man3/bson_json.3
226man/man3/bson_json_data_reader_ingest.3 236man/man3/bson_json_data_reader_ingest.3
227man/man3/bson_json_data_reader_new.3 237man/man3/bson_json_data_reader_new.3
228man/man3/bson_json_reader_destroy.3 238man/man3/bson_json_reader_destroy.3
229man/man3/bson_json_reader_new.3 239man/man3/bson_json_reader_new.3
230man/man3/bson_json_reader_new_from_fd.3 240man/man3/bson_json_reader_new_from_fd.3
231man/man3/bson_json_reader_new_from_file.3 241man/man3/bson_json_reader_new_from_file.3
232man/man3/bson_json_reader_read.3 242man/man3/bson_json_reader_read.3
233man/man3/bson_json_reader_t.3 243man/man3/bson_json_reader_t.3
234man/man3/bson_malloc.3 244man/man3/bson_malloc.3
235man/man3/bson_malloc0.3 245man/man3/bson_malloc0.3
236man/man3/bson_md5_append.3 246man/man3/bson_md5_append.3
237man/man3/bson_md5_finish.3 247man/man3/bson_md5_finish.3
238man/man3/bson_md5_init.3 248man/man3/bson_md5_init.3
239man/man3/bson_md5_t.3 249man/man3/bson_md5_t.3
240man/man3/bson_mem_restore_vtable.3 250man/man3/bson_mem_restore_vtable.3
241man/man3/bson_mem_set_vtable.3 251man/man3/bson_mem_set_vtable.3
242man/man3/bson_memory.3 252man/man3/bson_memory.3
243man/man3/bson_new.3 253man/man3/bson_new.3
244man/man3/bson_new_from_buffer.3 254man/man3/bson_new_from_buffer.3
245man/man3/bson_new_from_data.3 255man/man3/bson_new_from_data.3
246man/man3/bson_new_from_json.3 256man/man3/bson_new_from_json.3
247man/man3/bson_oid.3 257man/man3/bson_oid.3
248man/man3/bson_oid_compare.3 258man/man3/bson_oid_compare.3
249man/man3/bson_oid_copy.3 259man/man3/bson_oid_copy.3
250man/man3/bson_oid_equal.3 260man/man3/bson_oid_equal.3
251man/man3/bson_oid_get_time_t.3 261man/man3/bson_oid_get_time_t.3
252man/man3/bson_oid_hash.3 262man/man3/bson_oid_hash.3
253man/man3/bson_oid_init.3 263man/man3/bson_oid_init.3
254man/man3/bson_oid_init_from_data.3 264man/man3/bson_oid_init_from_data.3
255man/man3/bson_oid_init_from_string.3 265man/man3/bson_oid_init_from_string.3
256man/man3/bson_oid_init_sequence.3 266man/man3/bson_oid_init_sequence.3
257man/man3/bson_oid_is_valid.3 267man/man3/bson_oid_is_valid.3
258man/man3/bson_oid_t.3 268man/man3/bson_oid_t.3
259man/man3/bson_oid_to_string.3 269man/man3/bson_oid_to_string.3
260man/man3/bson_parsing.3 270man/man3/bson_parsing.3
261man/man3/bson_reader_destroy.3 271man/man3/bson_reader_destroy.3
262man/man3/bson_reader_destroy_func_t.3 272man/man3/bson_reader_destroy_func_t.3
263man/man3/bson_reader_new_from_data.3 273man/man3/bson_reader_new_from_data.3
264man/man3/bson_reader_new_from_fd.3 274man/man3/bson_reader_new_from_fd.3
265man/man3/bson_reader_new_from_file.3 275man/man3/bson_reader_new_from_file.3
266man/man3/bson_reader_new_from_handle.3 276man/man3/bson_reader_new_from_handle.3
267man/man3/bson_reader_read.3 277man/man3/bson_reader_read.3
268man/man3/bson_reader_read_func_t.3 278man/man3/bson_reader_read_func_t.3
269man/man3/bson_reader_reset.3 279man/man3/bson_reader_reset.3
270man/man3/bson_reader_set_destroy_func.3 280man/man3/bson_reader_set_destroy_func.3
271man/man3/bson_reader_set_read_func.3 281man/man3/bson_reader_set_read_func.3
272man/man3/bson_reader_t.3 282man/man3/bson_reader_t.3
273man/man3/bson_reader_tell.3 283man/man3/bson_reader_tell.3
274man/man3/bson_realloc.3 284man/man3/bson_realloc.3
275man/man3/bson_realloc_ctx.3 285man/man3/bson_realloc_ctx.3
276man/man3/bson_realloc_func.3 286man/man3/bson_realloc_func.3
277man/man3/bson_reference.3 287man/man3/bson_reference.3
278man/man3/bson_reinit.3 288man/man3/bson_reinit.3
279man/man3/bson_reserve_buffer.3 289man/man3/bson_reserve_buffer.3
280man/man3/bson_set_error.3 290man/man3/bson_set_error.3
281man/man3/bson_sized_new.3 291man/man3/bson_sized_new.3
282man/man3/bson_snprintf.3 292man/man3/bson_snprintf.3
283man/man3/bson_steal.3 293man/man3/bson_steal.3
284man/man3/bson_strcasecmp.3 294man/man3/bson_strcasecmp.3
285man/man3/bson_strdup.3 295man/man3/bson_strdup.3
286man/man3/bson_strdup_printf.3 296man/man3/bson_strdup_printf.3
287man/man3/bson_strdupv_printf.3 297man/man3/bson_strdupv_printf.3
288man/man3/bson_streaming_bson.3 298man/man3/bson_streaming_bson.3
289man/man3/bson_strerror_r.3 299man/man3/bson_strerror_r.3
290man/man3/bson_strfreev.3 300man/man3/bson_strfreev.3
291man/man3/bson_string_append.3 301man/man3/bson_string_append.3
292man/man3/bson_string_append_c.3 302man/man3/bson_string_append_c.3
293man/man3/bson_string_append_printf.3 303man/man3/bson_string_append_printf.3
294man/man3/bson_string_append_unichar.3 304man/man3/bson_string_append_unichar.3
295man/man3/bson_string_free.3 305man/man3/bson_string_free.3
296man/man3/bson_string_new.3 306man/man3/bson_string_new.3
297man/man3/bson_string_t.3 307man/man3/bson_string_t.3
298man/man3/bson_string_truncate.3 308man/man3/bson_string_truncate.3
299man/man3/bson_strncpy.3 309man/man3/bson_strncpy.3
300man/man3/bson_strndup.3 310man/man3/bson_strndup.3
301man/man3/bson_strnlen.3 311man/man3/bson_strnlen.3
302man/man3/bson_subtype_t.3 312man/man3/bson_subtype_t.3
303man/man3/bson_t.3 313man/man3/bson_t.3
304man/man3/bson_threading.3 314man/man3/bson_threading.3
305man/man3/bson_tutorial.3 315man/man3/bson_tutorial.3
306man/man3/bson_type_t.3 316man/man3/bson_type_t.3
307man/man3/bson_uint32_to_string.3 317man/man3/bson_uint32_to_string.3
308man/man3/bson_unichar_t.3 318man/man3/bson_unichar_t.3
309man/man3/bson_utf8.3 319man/man3/bson_utf8.3
310man/man3/bson_utf8_escape_for_json.3 320man/man3/bson_utf8_escape_for_json.3
311man/man3/bson_utf8_from_unichar.3 321man/man3/bson_utf8_from_unichar.3
312man/man3/bson_utf8_get_char.3 322man/man3/bson_utf8_get_char.3
313man/man3/bson_utf8_next_char.3 323man/man3/bson_utf8_next_char.3
314man/man3/bson_utf8_validate.3 324man/man3/bson_utf8_validate.3
315man/man3/bson_valgrind.3 325man/man3/bson_valgrind.3
316man/man3/bson_validate.3 326man/man3/bson_validate.3
317man/man3/bson_validate_with_error.3 327man/man3/bson_validate_with_error.3
318man/man3/bson_value_copy.3 328man/man3/bson_value_copy.3
319man/man3/bson_value_destroy.3 329man/man3/bson_value_destroy.3
320man/man3/bson_value_t.3 330man/man3/bson_value_t.3
321man/man3/bson_version.3 331man/man3/bson_version.3
322man/man3/bson_visitor_t.3 332man/man3/bson_visitor_t.3
323man/man3/bson_vsnprintf.3 333man/man3/bson_vsnprintf.3
324man/man3/bson_writer_begin.3 334man/man3/bson_writer_begin.3
325man/man3/bson_writer_destroy.3 335man/man3/bson_writer_destroy.3
326man/man3/bson_writer_end.3 336man/man3/bson_writer_end.3
327man/man3/bson_writer_get_length.3 337man/man3/bson_writer_get_length.3
328man/man3/bson_writer_new.3 338man/man3/bson_writer_new.3
329man/man3/bson_writer_rollback.3 339man/man3/bson_writer_rollback.3
330man/man3/bson_writer_t.3 340man/man3/bson_writer_t.3
331man/man3/bson_zero_free.3 341man/man3/bson_zero_free.3
332man/man3/mongoc_advanced_connections.3 342man/man3/mongoc_advanced_connections.3
333man/man3/mongoc_aggregate.3 343man/man3/mongoc_aggregate.3
334man/man3/mongoc_apm_callbacks_destroy.3 344man/man3/mongoc_apm_callbacks_destroy.3
335man/man3/mongoc_apm_callbacks_new.3 345man/man3/mongoc_apm_callbacks_new.3
336man/man3/mongoc_apm_callbacks_t.3 346man/man3/mongoc_apm_callbacks_t.3
337man/man3/mongoc_apm_command_failed_get_command_name.3 347man/man3/mongoc_apm_command_failed_get_command_name.3
338man/man3/mongoc_apm_command_failed_get_context.3 348man/man3/mongoc_apm_command_failed_get_context.3
339man/man3/mongoc_apm_command_failed_get_duration.3 349man/man3/mongoc_apm_command_failed_get_duration.3
340man/man3/mongoc_apm_command_failed_get_error.3 350man/man3/mongoc_apm_command_failed_get_error.3
341man/man3/mongoc_apm_command_failed_get_host.3 351man/man3/mongoc_apm_command_failed_get_host.3
342man/man3/mongoc_apm_command_failed_get_operation_id.3 352man/man3/mongoc_apm_command_failed_get_operation_id.3
343man/man3/mongoc_apm_command_failed_get_reply.3 353man/man3/mongoc_apm_command_failed_get_reply.3
344man/man3/mongoc_apm_command_failed_get_request_id.3 354man/man3/mongoc_apm_command_failed_get_request_id.3
345man/man3/mongoc_apm_command_failed_get_server_id.3 355man/man3/mongoc_apm_command_failed_get_server_id.3
346man/man3/mongoc_apm_command_failed_t.3 356man/man3/mongoc_apm_command_failed_t.3
347man/man3/mongoc_apm_command_started_get_command.3 357man/man3/mongoc_apm_command_started_get_command.3
348man/man3/mongoc_apm_command_started_get_command_name.3 358man/man3/mongoc_apm_command_started_get_command_name.3
349man/man3/mongoc_apm_command_started_get_context.3 359man/man3/mongoc_apm_command_started_get_context.3
350man/man3/mongoc_apm_command_started_get_database_name.3 360man/man3/mongoc_apm_command_started_get_database_name.3
351man/man3/mongoc_apm_command_started_get_host.3 361man/man3/mongoc_apm_command_started_get_host.3
352man/man3/mongoc_apm_command_started_get_operation_id.3 362man/man3/mongoc_apm_command_started_get_operation_id.3
353man/man3/mongoc_apm_command_started_get_request_id.3 363man/man3/mongoc_apm_command_started_get_request_id.3
354man/man3/mongoc_apm_command_started_get_server_id.3 364man/man3/mongoc_apm_command_started_get_server_id.3
355man/man3/mongoc_apm_command_started_t.3 365man/man3/mongoc_apm_command_started_t.3
356man/man3/mongoc_apm_command_succeeded_get_command_name.3 366man/man3/mongoc_apm_command_succeeded_get_command_name.3
357man/man3/mongoc_apm_command_succeeded_get_context.3 367man/man3/mongoc_apm_command_succeeded_get_context.3
358man/man3/mongoc_apm_command_succeeded_get_duration.3 368man/man3/mongoc_apm_command_succeeded_get_duration.3
359man/man3/mongoc_apm_command_succeeded_get_host.3 369man/man3/mongoc_apm_command_succeeded_get_host.3
360man/man3/mongoc_apm_command_succeeded_get_operation_id.3 370man/man3/mongoc_apm_command_succeeded_get_operation_id.3
361man/man3/mongoc_apm_command_succeeded_get_reply.3 371man/man3/mongoc_apm_command_succeeded_get_reply.3
362man/man3/mongoc_apm_command_succeeded_get_request_id.3 372man/man3/mongoc_apm_command_succeeded_get_request_id.3
363man/man3/mongoc_apm_command_succeeded_get_server_id.3 373man/man3/mongoc_apm_command_succeeded_get_server_id.3
364man/man3/mongoc_apm_command_succeeded_t.3 374man/man3/mongoc_apm_command_succeeded_t.3
365man/man3/mongoc_apm_server_changed_get_context.3 375man/man3/mongoc_apm_server_changed_get_context.3
366man/man3/mongoc_apm_server_changed_get_host.3 376man/man3/mongoc_apm_server_changed_get_host.3
367man/man3/mongoc_apm_server_changed_get_new_description.3 377man/man3/mongoc_apm_server_changed_get_new_description.3
368man/man3/mongoc_apm_server_changed_get_previous_description.3 378man/man3/mongoc_apm_server_changed_get_previous_description.3
369man/man3/mongoc_apm_server_changed_get_topology_id.3 379man/man3/mongoc_apm_server_changed_get_topology_id.3
370man/man3/mongoc_apm_server_changed_t.3 380man/man3/mongoc_apm_server_changed_t.3
371man/man3/mongoc_apm_server_closed_get_context.3 381man/man3/mongoc_apm_server_closed_get_context.3
372man/man3/mongoc_apm_server_closed_get_host.3 382man/man3/mongoc_apm_server_closed_get_host.3
373man/man3/mongoc_apm_server_closed_get_topology_id.3 383man/man3/mongoc_apm_server_closed_get_topology_id.3
374man/man3/mongoc_apm_server_closed_t.3 384man/man3/mongoc_apm_server_closed_t.3
375man/man3/mongoc_apm_server_heartbeat_failed_get_context.3 385man/man3/mongoc_apm_server_heartbeat_failed_get_context.3
376man/man3/mongoc_apm_server_heartbeat_failed_get_duration.3 386man/man3/mongoc_apm_server_heartbeat_failed_get_duration.3
377man/man3/mongoc_apm_server_heartbeat_failed_get_error.3 387man/man3/mongoc_apm_server_heartbeat_failed_get_error.3
378man/man3/mongoc_apm_server_heartbeat_failed_get_host.3 388man/man3/mongoc_apm_server_heartbeat_failed_get_host.3
379man/man3/mongoc_apm_server_heartbeat_failed_t.3 389man/man3/mongoc_apm_server_heartbeat_failed_t.3
380man/man3/mongoc_apm_server_heartbeat_started_get_context.3 390man/man3/mongoc_apm_server_heartbeat_started_get_context.3
381man/man3/mongoc_apm_server_heartbeat_started_get_host.3 391man/man3/mongoc_apm_server_heartbeat_started_get_host.3
382man/man3/mongoc_apm_server_heartbeat_started_t.3 392man/man3/mongoc_apm_server_heartbeat_started_t.3
383man/man3/mongoc_apm_server_heartbeat_succeeded_get_context.3 393man/man3/mongoc_apm_server_heartbeat_succeeded_get_context.3
384man/man3/mongoc_apm_server_heartbeat_succeeded_get_duration.3 394man/man3/mongoc_apm_server_heartbeat_succeeded_get_duration.3
385man/man3/mongoc_apm_server_heartbeat_succeeded_get_host.3 395man/man3/mongoc_apm_server_heartbeat_succeeded_get_host.3
386man/man3/mongoc_apm_server_heartbeat_succeeded_get_reply.3 396man/man3/mongoc_apm_server_heartbeat_succeeded_get_reply.3
387man/man3/mongoc_apm_server_heartbeat_succeeded_t.3 397man/man3/mongoc_apm_server_heartbeat_succeeded_t.3
388man/man3/mongoc_apm_server_opening_get_context.3 398man/man3/mongoc_apm_server_opening_get_context.3
389man/man3/mongoc_apm_server_opening_get_host.3 399man/man3/mongoc_apm_server_opening_get_host.3
390man/man3/mongoc_apm_server_opening_get_topology_id.3 400man/man3/mongoc_apm_server_opening_get_topology_id.3
391man/man3/mongoc_apm_server_opening_t.3 401man/man3/mongoc_apm_server_opening_t.3
392man/man3/mongoc_apm_set_command_failed_cb.3 402man/man3/mongoc_apm_set_command_failed_cb.3
393man/man3/mongoc_apm_set_command_started_cb.3 403man/man3/mongoc_apm_set_command_started_cb.3
394man/man3/mongoc_apm_set_command_succeeded_cb.3 404man/man3/mongoc_apm_set_command_succeeded_cb.3
395man/man3/mongoc_apm_set_server_changed_cb.3 405man/man3/mongoc_apm_set_server_changed_cb.3
396man/man3/mongoc_apm_set_server_closed_cb.3 406man/man3/mongoc_apm_set_server_closed_cb.3
397man/man3/mongoc_apm_set_server_heartbeat_failed_cb.3 407man/man3/mongoc_apm_set_server_heartbeat_failed_cb.3
398man/man3/mongoc_apm_set_server_heartbeat_started_cb.3 408man/man3/mongoc_apm_set_server_heartbeat_started_cb.3
399man/man3/mongoc_apm_set_server_heartbeat_succeeded_cb.3 409man/man3/mongoc_apm_set_server_heartbeat_succeeded_cb.3
400man/man3/mongoc_apm_set_server_opening_cb.3 410man/man3/mongoc_apm_set_server_opening_cb.3
401man/man3/mongoc_apm_set_topology_changed_cb.3 411man/man3/mongoc_apm_set_topology_changed_cb.3
402man/man3/mongoc_apm_set_topology_closed_cb.3 412man/man3/mongoc_apm_set_topology_closed_cb.3
403man/man3/mongoc_apm_set_topology_opening_cb.3 413man/man3/mongoc_apm_set_topology_opening_cb.3
404man/man3/mongoc_apm_topology_changed_get_context.3 414man/man3/mongoc_apm_topology_changed_get_context.3
405man/man3/mongoc_apm_topology_changed_get_new_description.3 415man/man3/mongoc_apm_topology_changed_get_new_description.3
406man/man3/mongoc_apm_topology_changed_get_previous_description.3 416man/man3/mongoc_apm_topology_changed_get_previous_description.3
407man/man3/mongoc_apm_topology_changed_get_topology_id.3 417man/man3/mongoc_apm_topology_changed_get_topology_id.3
408man/man3/mongoc_apm_topology_changed_t.3 418man/man3/mongoc_apm_topology_changed_t.3
409man/man3/mongoc_apm_topology_closed_get_context.3 419man/man3/mongoc_apm_topology_closed_get_context.3
410man/man3/mongoc_apm_topology_closed_get_topology_id.3 420man/man3/mongoc_apm_topology_closed_get_topology_id.3
411man/man3/mongoc_apm_topology_closed_t.3 421man/man3/mongoc_apm_topology_closed_t.3
412man/man3/mongoc_apm_topology_opening_get_context.3 422man/man3/mongoc_apm_topology_opening_get_context.3
413man/man3/mongoc_apm_topology_opening_get_topology_id.3 423man/man3/mongoc_apm_topology_opening_get_topology_id.3
414man/man3/mongoc_apm_topology_opening_t.3 424man/man3/mongoc_apm_topology_opening_t.3
415man/man3/mongoc_application_performance_monitoring.3 425man/man3/mongoc_application_performance_monitoring.3
416man/man3/mongoc_authentication.3 426man/man3/mongoc_authentication.3
 427man/man3/mongoc_auto_encryption_opts_destroy.3
 428man/man3/mongoc_auto_encryption_opts_new.3
 429man/man3/mongoc_auto_encryption_opts_set_bypass_auto_encryption.3
 430man/man3/mongoc_auto_encryption_opts_set_extra.3
 431man/man3/mongoc_auto_encryption_opts_set_key_vault_client.3
 432man/man3/mongoc_auto_encryption_opts_set_key_vault_client_pool.3
 433man/man3/mongoc_auto_encryption_opts_set_key_vault_namespace.3
 434man/man3/mongoc_auto_encryption_opts_set_kms_providers.3
 435man/man3/mongoc_auto_encryption_opts_set_schema_map.3
 436man/man3/mongoc_auto_encryption_opts_t.3
417man/man3/mongoc_basic_troubleshooting.3 437man/man3/mongoc_basic_troubleshooting.3
418man/man3/mongoc_bulk.3 438man/man3/mongoc_bulk.3
419man/man3/mongoc_bulk_operation_delete.3 439man/man3/mongoc_bulk_operation_delete.3
420man/man3/mongoc_bulk_operation_delete_one.3 440man/man3/mongoc_bulk_operation_delete_one.3
421man/man3/mongoc_bulk_operation_destroy.3 441man/man3/mongoc_bulk_operation_destroy.3
422man/man3/mongoc_bulk_operation_execute.3 442man/man3/mongoc_bulk_operation_execute.3
423man/man3/mongoc_bulk_operation_get_hint.3 443man/man3/mongoc_bulk_operation_get_hint.3
424man/man3/mongoc_bulk_operation_get_write_concern.3 444man/man3/mongoc_bulk_operation_get_write_concern.3
425man/man3/mongoc_bulk_operation_insert.3 445man/man3/mongoc_bulk_operation_insert.3
426man/man3/mongoc_bulk_operation_insert_with_opts.3 446man/man3/mongoc_bulk_operation_insert_with_opts.3
427man/man3/mongoc_bulk_operation_remove.3 447man/man3/mongoc_bulk_operation_remove.3
428man/man3/mongoc_bulk_operation_remove_many_with_opts.3 448man/man3/mongoc_bulk_operation_remove_many_with_opts.3
429man/man3/mongoc_bulk_operation_remove_one.3 449man/man3/mongoc_bulk_operation_remove_one.3
430man/man3/mongoc_bulk_operation_remove_one_with_opts.3 450man/man3/mongoc_bulk_operation_remove_one_with_opts.3
431man/man3/mongoc_bulk_operation_replace_one.3 451man/man3/mongoc_bulk_operation_replace_one.3
432man/man3/mongoc_bulk_operation_replace_one_with_opts.3 452man/man3/mongoc_bulk_operation_replace_one_with_opts.3
433man/man3/mongoc_bulk_operation_set_bypass_document_validation.3 453man/man3/mongoc_bulk_operation_set_bypass_document_validation.3
 454man/man3/mongoc_bulk_operation_set_client_session.3
434man/man3/mongoc_bulk_operation_set_hint.3 455man/man3/mongoc_bulk_operation_set_hint.3
435man/man3/mongoc_bulk_operation_t.3 456man/man3/mongoc_bulk_operation_t.3
436man/man3/mongoc_bulk_operation_update.3 457man/man3/mongoc_bulk_operation_update.3
437man/man3/mongoc_bulk_operation_update_many_with_opts.3 458man/man3/mongoc_bulk_operation_update_many_with_opts.3
438man/man3/mongoc_bulk_operation_update_one.3 459man/man3/mongoc_bulk_operation_update_one.3
439man/man3/mongoc_bulk_operation_update_one_with_opts.3 460man/man3/mongoc_bulk_operation_update_one_with_opts.3
440man/man3/mongoc_change_stream_destroy.3 461man/man3/mongoc_change_stream_destroy.3
441man/man3/mongoc_change_stream_error_document.3 462man/man3/mongoc_change_stream_error_document.3
 463man/man3/mongoc_change_stream_get_resume_token.3
442man/man3/mongoc_change_stream_next.3 464man/man3/mongoc_change_stream_next.3
443man/man3/mongoc_change_stream_t.3 465man/man3/mongoc_change_stream_t.3
444man/man3/mongoc_check_version.3 466man/man3/mongoc_check_version.3
445man/man3/mongoc_cleanup.3 467man/man3/mongoc_cleanup.3
446man/man3/mongoc_client_command.3 468man/man3/mongoc_client_command.3
447man/man3/mongoc_client_command_simple.3 469man/man3/mongoc_client_command_simple.3
448man/man3/mongoc_client_command_simple_with_server_id.3 470man/man3/mongoc_client_command_simple_with_server_id.3
449man/man3/mongoc_client_command_with_opts.3 471man/man3/mongoc_client_command_with_opts.3
 472man/man3/mongoc_client_decryption_decrypt.3
450man/man3/mongoc_client_destroy.3 473man/man3/mongoc_client_destroy.3
 474man/man3/mongoc_client_enable_auto_encryption.3
 475man/man3/mongoc_client_encryption_create_datakey.3
 476man/man3/mongoc_client_encryption_datakey_opts_destroy.3
 477man/man3/mongoc_client_encryption_datakey_opts_new.3
 478man/man3/mongoc_client_encryption_datakey_opts_set_keyaltnames.3
 479man/man3/mongoc_client_encryption_datakey_opts_set_masterkey.3
 480man/man3/mongoc_client_encryption_datakey_opts_t.3
 481man/man3/mongoc_client_encryption_destroy.3
 482man/man3/mongoc_client_encryption_encrypt.3
 483man/man3/mongoc_client_encryption_encrypt_opts_destroy.3
 484man/man3/mongoc_client_encryption_encrypt_opts_new.3
 485man/man3/mongoc_client_encryption_encrypt_opts_set_algorithm.3
 486man/man3/mongoc_client_encryption_encrypt_opts_set_keyaltname.3
 487man/man3/mongoc_client_encryption_encrypt_opts_set_keyid.3
 488man/man3/mongoc_client_encryption_encrypt_opts_t.3
 489man/man3/mongoc_client_encryption_new.3
 490man/man3/mongoc_client_encryption_opts_destroy.3
 491man/man3/mongoc_client_encryption_opts_new.3
 492man/man3/mongoc_client_encryption_opts_set_key_vault_namespace.3
 493man/man3/mongoc_client_encryption_opts_set_keyvault_client.3
 494man/man3/mongoc_client_encryption_opts_set_kms_providers.3
 495man/man3/mongoc_client_encryption_opts_t.3
 496man/man3/mongoc_client_encryption_t.3
451man/man3/mongoc_client_find_databases_with_opts.3 497man/man3/mongoc_client_find_databases_with_opts.3
452man/man3/mongoc_client_get_collection.3 498man/man3/mongoc_client_get_collection.3
453man/man3/mongoc_client_get_database.3 499man/man3/mongoc_client_get_database.3
454man/man3/mongoc_client_get_database_names.3 500man/man3/mongoc_client_get_database_names.3
455man/man3/mongoc_client_get_database_names_with_opts.3 501man/man3/mongoc_client_get_database_names_with_opts.3
456man/man3/mongoc_client_get_default_database.3 502man/man3/mongoc_client_get_default_database.3
457man/man3/mongoc_client_get_gridfs.3 503man/man3/mongoc_client_get_gridfs.3
458man/man3/mongoc_client_get_max_bson_size.3 504man/man3/mongoc_client_get_max_bson_size.3
459man/man3/mongoc_client_get_max_message_size.3 505man/man3/mongoc_client_get_max_message_size.3
460man/man3/mongoc_client_get_read_concern.3 506man/man3/mongoc_client_get_read_concern.3
461man/man3/mongoc_client_get_read_prefs.3 507man/man3/mongoc_client_get_read_prefs.3
462man/man3/mongoc_client_get_server_description.3 508man/man3/mongoc_client_get_server_description.3
463man/man3/mongoc_client_get_server_descriptions.3 509man/man3/mongoc_client_get_server_descriptions.3
464man/man3/mongoc_client_get_server_status.3 510man/man3/mongoc_client_get_server_status.3
465man/man3/mongoc_client_get_uri.3 511man/man3/mongoc_client_get_uri.3
466man/man3/mongoc_client_get_write_concern.3 512man/man3/mongoc_client_get_write_concern.3
467man/man3/mongoc_client_new.3 513man/man3/mongoc_client_new.3
468man/man3/mongoc_client_new_from_uri.3 514man/man3/mongoc_client_new_from_uri.3
469man/man3/mongoc_client_pool_destroy.3 515man/man3/mongoc_client_pool_destroy.3
 516man/man3/mongoc_client_pool_enable_auto_encryption.3
470man/man3/mongoc_client_pool_max_size.3 517man/man3/mongoc_client_pool_max_size.3
471man/man3/mongoc_client_pool_min_size.3 518man/man3/mongoc_client_pool_min_size.3
472man/man3/mongoc_client_pool_new.3 519man/man3/mongoc_client_pool_new.3
473man/man3/mongoc_client_pool_pop.3 520man/man3/mongoc_client_pool_pop.3
474man/man3/mongoc_client_pool_push.3 521man/man3/mongoc_client_pool_push.3
475man/man3/mongoc_client_pool_set_apm_callbacks.3 522man/man3/mongoc_client_pool_set_apm_callbacks.3
476man/man3/mongoc_client_pool_set_appname.3 523man/man3/mongoc_client_pool_set_appname.3
477man/man3/mongoc_client_pool_set_error_api.3 524man/man3/mongoc_client_pool_set_error_api.3
478man/man3/mongoc_client_pool_set_ssl_opts.3 525man/man3/mongoc_client_pool_set_ssl_opts.3
479man/man3/mongoc_client_pool_t.3 526man/man3/mongoc_client_pool_t.3
480man/man3/mongoc_client_pool_try_pop.3 527man/man3/mongoc_client_pool_try_pop.3
481man/man3/mongoc_client_read_command_with_opts.3 528man/man3/mongoc_client_read_command_with_opts.3
482man/man3/mongoc_client_read_write_command_with_opts.3 529man/man3/mongoc_client_read_write_command_with_opts.3
483man/man3/mongoc_client_reset.3 530man/man3/mongoc_client_reset.3
484man/man3/mongoc_client_select_server.3 531man/man3/mongoc_client_select_server.3
485man/man3/mongoc_client_session_abort_transaction.3 532man/man3/mongoc_client_session_abort_transaction.3
486man/man3/mongoc_client_session_advance_cluster_time.3 533man/man3/mongoc_client_session_advance_cluster_time.3
487man/man3/mongoc_client_session_advance_operation_time.3 534man/man3/mongoc_client_session_advance_operation_time.3
488man/man3/mongoc_client_session_append.3 535man/man3/mongoc_client_session_append.3
489man/man3/mongoc_client_session_commit_transaction.3 536man/man3/mongoc_client_session_commit_transaction.3
490man/man3/mongoc_client_session_destroy.3 537man/man3/mongoc_client_session_destroy.3
491man/man3/mongoc_client_session_get_client.3 538man/man3/mongoc_client_session_get_client.3
492man/man3/mongoc_client_session_get_cluster_time.3 539man/man3/mongoc_client_session_get_cluster_time.3
493man/man3/mongoc_client_session_get_lsid.3 540man/man3/mongoc_client_session_get_lsid.3
494man/man3/mongoc_client_session_get_operation_time.3 541man/man3/mongoc_client_session_get_operation_time.3
495man/man3/mongoc_client_session_get_opts.3 542man/man3/mongoc_client_session_get_opts.3
 543man/man3/mongoc_client_session_get_server_id.3
 544man/man3/mongoc_client_session_get_transaction_state.3
496man/man3/mongoc_client_session_in_transaction.3 545man/man3/mongoc_client_session_in_transaction.3
497man/man3/mongoc_client_session_start_transaction.3 546man/man3/mongoc_client_session_start_transaction.3
498man/man3/mongoc_client_session_t.3 547man/man3/mongoc_client_session_t.3
 548man/man3/mongoc_client_session_with_transaction.3
 549man/man3/mongoc_client_session_with_transaction_cb_t.3
499man/man3/mongoc_client_set_apm_callbacks.3 550man/man3/mongoc_client_set_apm_callbacks.3
500man/man3/mongoc_client_set_appname.3 551man/man3/mongoc_client_set_appname.3
501man/man3/mongoc_client_set_error_api.3 552man/man3/mongoc_client_set_error_api.3
502man/man3/mongoc_client_set_read_concern.3 553man/man3/mongoc_client_set_read_concern.3
503man/man3/mongoc_client_set_read_prefs.3 554man/man3/mongoc_client_set_read_prefs.3
504man/man3/mongoc_client_set_ssl_opts.3 555man/man3/mongoc_client_set_ssl_opts.3
505man/man3/mongoc_client_set_stream_initiator.3 556man/man3/mongoc_client_set_stream_initiator.3
506man/man3/mongoc_client_set_write_concern.3 557man/man3/mongoc_client_set_write_concern.3
507man/man3/mongoc_client_start_session.3 558man/man3/mongoc_client_start_session.3
508man/man3/mongoc_client_t.3 559man/man3/mongoc_client_t.3
509man/man3/mongoc_client_watch.3 560man/man3/mongoc_client_watch.3
510man/man3/mongoc_client_write_command_with_opts.3 561man/man3/mongoc_client_write_command_with_opts.3
511man/man3/mongoc_collection_aggregate.3 562man/man3/mongoc_collection_aggregate.3
512man/man3/mongoc_collection_command.3 563man/man3/mongoc_collection_command.3
513man/man3/mongoc_collection_command_simple.3 564man/man3/mongoc_collection_command_simple.3
514man/man3/mongoc_collection_command_with_opts.3 565man/man3/mongoc_collection_command_with_opts.3
515man/man3/mongoc_collection_copy.3 566man/man3/mongoc_collection_copy.3
516man/man3/mongoc_collection_count.3 567man/man3/mongoc_collection_count.3
517man/man3/mongoc_collection_count_documents.3 568man/man3/mongoc_collection_count_documents.3
518man/man3/mongoc_collection_count_with_opts.3 569man/man3/mongoc_collection_count_with_opts.3
519man/man3/mongoc_collection_create_bulk_operation.3 570man/man3/mongoc_collection_create_bulk_operation.3
520man/man3/mongoc_collection_create_bulk_operation_with_opts.3 571man/man3/mongoc_collection_create_bulk_operation_with_opts.3
521man/man3/mongoc_collection_create_index.3 572man/man3/mongoc_collection_create_index.3
522man/man3/mongoc_collection_create_index_with_opts.3 573man/man3/mongoc_collection_create_index_with_opts.3
523man/man3/mongoc_collection_delete.3 574man/man3/mongoc_collection_delete.3
524man/man3/mongoc_collection_delete_many.3 575man/man3/mongoc_collection_delete_many.3
525man/man3/mongoc_collection_delete_one.3 576man/man3/mongoc_collection_delete_one.3
526man/man3/mongoc_collection_destroy.3 577man/man3/mongoc_collection_destroy.3
527man/man3/mongoc_collection_drop.3 578man/man3/mongoc_collection_drop.3
528man/man3/mongoc_collection_drop_index.3 579man/man3/mongoc_collection_drop_index.3
529man/man3/mongoc_collection_drop_index_with_opts.3 580man/man3/mongoc_collection_drop_index_with_opts.3
530man/man3/mongoc_collection_drop_with_opts.3 581man/man3/mongoc_collection_drop_with_opts.3
531man/man3/mongoc_collection_ensure_index.3 582man/man3/mongoc_collection_ensure_index.3
532man/man3/mongoc_collection_estimated_document_count.3 583man/man3/mongoc_collection_estimated_document_count.3
533man/man3/mongoc_collection_find.3 584man/man3/mongoc_collection_find.3
534man/man3/mongoc_collection_find_and_modify.3 585man/man3/mongoc_collection_find_and_modify.3
535man/man3/mongoc_collection_find_and_modify_with_opts.3 586man/man3/mongoc_collection_find_and_modify_with_opts.3
536man/man3/mongoc_collection_find_indexes.3 587man/man3/mongoc_collection_find_indexes.3
537man/man3/mongoc_collection_find_indexes_with_opts.3 588man/man3/mongoc_collection_find_indexes_with_opts.3
538man/man3/mongoc_collection_find_with_opts.3 589man/man3/mongoc_collection_find_with_opts.3
539man/man3/mongoc_collection_get_last_error.3 590man/man3/mongoc_collection_get_last_error.3
540man/man3/mongoc_collection_get_name.3 591man/man3/mongoc_collection_get_name.3
541man/man3/mongoc_collection_get_read_concern.3 592man/man3/mongoc_collection_get_read_concern.3
542man/man3/mongoc_collection_get_read_prefs.3 593man/man3/mongoc_collection_get_read_prefs.3
543man/man3/mongoc_collection_get_write_concern.3 594man/man3/mongoc_collection_get_write_concern.3
544man/man3/mongoc_collection_insert.3 595man/man3/mongoc_collection_insert.3
545man/man3/mongoc_collection_insert_bulk.3 596man/man3/mongoc_collection_insert_bulk.3
546man/man3/mongoc_collection_insert_many.3 597man/man3/mongoc_collection_insert_many.3
547man/man3/mongoc_collection_insert_one.3 598man/man3/mongoc_collection_insert_one.3
548man/man3/mongoc_collection_keys_to_index_string.3 599man/man3/mongoc_collection_keys_to_index_string.3
549man/man3/mongoc_collection_read_command_with_opts.3 600man/man3/mongoc_collection_read_command_with_opts.3
550man/man3/mongoc_collection_read_write_command_with_opts.3 601man/man3/mongoc_collection_read_write_command_with_opts.3
551man/man3/mongoc_collection_remove.3 602man/man3/mongoc_collection_remove.3
552man/man3/mongoc_collection_rename.3 603man/man3/mongoc_collection_rename.3
553man/man3/mongoc_collection_rename_with_opts.3 604man/man3/mongoc_collection_rename_with_opts.3
554man/man3/mongoc_collection_replace_one.3 605man/man3/mongoc_collection_replace_one.3
555man/man3/mongoc_collection_save.3 606man/man3/mongoc_collection_save.3
556man/man3/mongoc_collection_set_read_concern.3 607man/man3/mongoc_collection_set_read_concern.3
557man/man3/mongoc_collection_set_read_prefs.3 608man/man3/mongoc_collection_set_read_prefs.3
558man/man3/mongoc_collection_set_write_concern.3 609man/man3/mongoc_collection_set_write_concern.3
559man/man3/mongoc_collection_stats.3 610man/man3/mongoc_collection_stats.3
560man/man3/mongoc_collection_t.3 611man/man3/mongoc_collection_t.3
561man/man3/mongoc_collection_update.3 612man/man3/mongoc_collection_update.3
562man/man3/mongoc_collection_update_many.3 613man/man3/mongoc_collection_update_many.3
563man/man3/mongoc_collection_update_one.3 614man/man3/mongoc_collection_update_one.3
564man/man3/mongoc_collection_validate.3 615man/man3/mongoc_collection_validate.3
565man/man3/mongoc_collection_watch.3 616man/man3/mongoc_collection_watch.3
566man/man3/mongoc_collection_write_command_with_opts.3 617man/man3/mongoc_collection_write_command_with_opts.3
567man/man3/mongoc_common_task_examples.3 618man/man3/mongoc_common_task_examples.3
568man/man3/mongoc_connection_pooling.3 619man/man3/mongoc_connection_pooling.3
569man/man3/mongoc_create_indexes.3 620man/man3/mongoc_create_indexes.3
570man/man3/mongoc_cursor_clone.3 621man/man3/mongoc_cursor_clone.3
571man/man3/mongoc_cursor_current.3 622man/man3/mongoc_cursor_current.3
572man/man3/mongoc_cursor_destroy.3 623man/man3/mongoc_cursor_destroy.3
573man/man3/mongoc_cursor_error.3 624man/man3/mongoc_cursor_error.3
574man/man3/mongoc_cursor_error_document.3 625man/man3/mongoc_cursor_error_document.3
575man/man3/mongoc_cursor_get_batch_size.3 626man/man3/mongoc_cursor_get_batch_size.3
576man/man3/mongoc_cursor_get_hint.3 627man/man3/mongoc_cursor_get_hint.3
577man/man3/mongoc_cursor_get_host.3 628man/man3/mongoc_cursor_get_host.3
578man/man3/mongoc_cursor_get_id.3 629man/man3/mongoc_cursor_get_id.3
579man/man3/mongoc_cursor_get_limit.3 630man/man3/mongoc_cursor_get_limit.3
580man/man3/mongoc_cursor_get_max_await_time_ms.3 631man/man3/mongoc_cursor_get_max_await_time_ms.3
581man/man3/mongoc_cursor_is_alive.3 632man/man3/mongoc_cursor_is_alive.3
582man/man3/mongoc_cursor_more.3 633man/man3/mongoc_cursor_more.3
583man/man3/mongoc_cursor_new_from_command_reply.3 634man/man3/mongoc_cursor_new_from_command_reply.3
584man/man3/mongoc_cursor_new_from_command_reply_with_opts.3 635man/man3/mongoc_cursor_new_from_command_reply_with_opts.3
585man/man3/mongoc_cursor_next.3 636man/man3/mongoc_cursor_next.3
586man/man3/mongoc_cursor_set_batch_size.3 637man/man3/mongoc_cursor_set_batch_size.3
587man/man3/mongoc_cursor_set_hint.3 638man/man3/mongoc_cursor_set_hint.3
588man/man3/mongoc_cursor_set_limit.3 639man/man3/mongoc_cursor_set_limit.3
589man/man3/mongoc_cursor_set_max_await_time_ms.3 640man/man3/mongoc_cursor_set_max_await_time_ms.3
590man/man3/mongoc_cursor_t.3 641man/man3/mongoc_cursor_t.3
591man/man3/mongoc_cursors.3 642man/man3/mongoc_cursors.3
592man/man3/mongoc_database_add_user.3 643man/man3/mongoc_database_add_user.3
 644man/man3/mongoc_database_aggregate.3
593man/man3/mongoc_database_command.3 645man/man3/mongoc_database_command.3
594man/man3/mongoc_database_command_simple.3 646man/man3/mongoc_database_command_simple.3
595man/man3/mongoc_database_command_with_opts.3 647man/man3/mongoc_database_command_with_opts.3
596man/man3/mongoc_database_copy.3 648man/man3/mongoc_database_copy.3
597man/man3/mongoc_database_create_collection.3 649man/man3/mongoc_database_create_collection.3
598man/man3/mongoc_database_destroy.3 650man/man3/mongoc_database_destroy.3
599man/man3/mongoc_database_drop.3 651man/man3/mongoc_database_drop.3
600man/man3/mongoc_database_drop_with_opts.3 652man/man3/mongoc_database_drop_with_opts.3
601man/man3/mongoc_database_find_collections.3 653man/man3/mongoc_database_find_collections.3
602man/man3/mongoc_database_find_collections_with_opts.3 654man/man3/mongoc_database_find_collections_with_opts.3
603man/man3/mongoc_database_get_collection.3 655man/man3/mongoc_database_get_collection.3
604man/man3/mongoc_database_get_collection_names.3 656man/man3/mongoc_database_get_collection_names.3
605man/man3/mongoc_database_get_collection_names_with_opts.3 657man/man3/mongoc_database_get_collection_names_with_opts.3
606man/man3/mongoc_database_get_name.3 658man/man3/mongoc_database_get_name.3
607man/man3/mongoc_database_get_read_concern.3 659man/man3/mongoc_database_get_read_concern.3
608man/man3/mongoc_database_get_read_prefs.3 660man/man3/mongoc_database_get_read_prefs.3
609man/man3/mongoc_database_get_write_concern.3 661man/man3/mongoc_database_get_write_concern.3
610man/man3/mongoc_database_has_collection.3 662man/man3/mongoc_database_has_collection.3
611man/man3/mongoc_database_read_command_with_opts.3 663man/man3/mongoc_database_read_command_with_opts.3
612man/man3/mongoc_database_read_write_command_with_opts.3 664man/man3/mongoc_database_read_write_command_with_opts.3
613man/man3/mongoc_database_remove_all_users.3 665man/man3/mongoc_database_remove_all_users.3
614man/man3/mongoc_database_remove_user.3 666man/man3/mongoc_database_remove_user.3
615man/man3/mongoc_database_set_read_concern.3 667man/man3/mongoc_database_set_read_concern.3
616man/man3/mongoc_database_set_read_prefs.3 668man/man3/mongoc_database_set_read_prefs.3
617man/man3/mongoc_database_set_write_concern.3 669man/man3/mongoc_database_set_write_concern.3
618man/man3/mongoc_database_t.3 670man/man3/mongoc_database_t.3
619man/man3/mongoc_database_watch.3 671man/man3/mongoc_database_watch.3
620man/man3/mongoc_database_write_command_with_opts.3 672man/man3/mongoc_database_write_command_with_opts.3
621man/man3/mongoc_debugging.3 673man/man3/mongoc_debugging.3
622man/man3/mongoc_delete_flags_t.3 674man/man3/mongoc_delete_flags_t.3
623man/man3/mongoc_distinct_mapreduce.3 675man/man3/mongoc_distinct_mapreduce.3
624man/man3/mongoc_error_has_label.3 676man/man3/mongoc_error_has_label.3
625man/man3/mongoc_errors.3 677man/man3/mongoc_errors.3
626man/man3/mongoc_find_and_modify_opts_append.3 678man/man3/mongoc_find_and_modify_opts_append.3
627man/man3/mongoc_find_and_modify_opts_destroy.3 679man/man3/mongoc_find_and_modify_opts_destroy.3
628man/man3/mongoc_find_and_modify_opts_get_bypass_document_validation.3 680man/man3/mongoc_find_and_modify_opts_get_bypass_document_validation.3
629man/man3/mongoc_find_and_modify_opts_get_fields.3 681man/man3/mongoc_find_and_modify_opts_get_fields.3
630man/man3/mongoc_find_and_modify_opts_get_flags.3 682man/man3/mongoc_find_and_modify_opts_get_flags.3
631man/man3/mongoc_find_and_modify_opts_get_max_time_ms.3 683man/man3/mongoc_find_and_modify_opts_get_max_time_ms.3
632man/man3/mongoc_find_and_modify_opts_get_sort.3 684man/man3/mongoc_find_and_modify_opts_get_sort.3
633man/man3/mongoc_find_and_modify_opts_get_update.3 685man/man3/mongoc_find_and_modify_opts_get_update.3
634man/man3/mongoc_find_and_modify_opts_new.3 686man/man3/mongoc_find_and_modify_opts_new.3
635man/man3/mongoc_find_and_modify_opts_set_bypass_document_validation.3 687man/man3/mongoc_find_and_modify_opts_set_bypass_document_validation.3
636man/man3/mongoc_find_and_modify_opts_set_fields.3 688man/man3/mongoc_find_and_modify_opts_set_fields.3
637man/man3/mongoc_find_and_modify_opts_set_flags.3 689man/man3/mongoc_find_and_modify_opts_set_flags.3
638man/man3/mongoc_find_and_modify_opts_set_max_time_ms.3 690man/man3/mongoc_find_and_modify_opts_set_max_time_ms.3
639man/man3/mongoc_find_and_modify_opts_set_sort.3 691man/man3/mongoc_find_and_modify_opts_set_sort.3
640man/man3/mongoc_find_and_modify_opts_set_update.3 692man/man3/mongoc_find_and_modify_opts_set_update.3
641man/man3/mongoc_find_and_modify_opts_t.3 693man/man3/mongoc_find_and_modify_opts_t.3
642man/man3/mongoc_get_major_version.3 694man/man3/mongoc_get_major_version.3
643man/man3/mongoc_get_micro_version.3 695man/man3/mongoc_get_micro_version.3
644man/man3/mongoc_get_minor_version.3 696man/man3/mongoc_get_minor_version.3
645man/man3/mongoc_get_version.3 697man/man3/mongoc_get_version.3
646man/man3/mongoc_gridfs_bucket_abort_upload.3 698man/man3/mongoc_gridfs_bucket_abort_upload.3
647man/man3/mongoc_gridfs_bucket_delete_by_id.3 699man/man3/mongoc_gridfs_bucket_delete_by_id.3
648man/man3/mongoc_gridfs_bucket_destroy.3 700man/man3/mongoc_gridfs_bucket_destroy.3
649man/man3/mongoc_gridfs_bucket_download_to_stream.3 701man/man3/mongoc_gridfs_bucket_download_to_stream.3
650man/man3/mongoc_gridfs_bucket_find.3 702man/man3/mongoc_gridfs_bucket_find.3
651man/man3/mongoc_gridfs_bucket_new.3 703man/man3/mongoc_gridfs_bucket_new.3
652man/man3/mongoc_gridfs_bucket_open_download_stream.3 704man/man3/mongoc_gridfs_bucket_open_download_stream.3
653man/man3/mongoc_gridfs_bucket_open_upload_stream.3 705man/man3/mongoc_gridfs_bucket_open_upload_stream.3
654man/man3/mongoc_gridfs_bucket_open_upload_stream_with_id.3 706man/man3/mongoc_gridfs_bucket_open_upload_stream_with_id.3
655man/man3/mongoc_gridfs_bucket_stream_error.3 707man/man3/mongoc_gridfs_bucket_stream_error.3
656man/man3/mongoc_gridfs_bucket_t.3 708man/man3/mongoc_gridfs_bucket_t.3
657man/man3/mongoc_gridfs_bucket_upload_from_stream.3 709man/man3/mongoc_gridfs_bucket_upload_from_stream.3
658man/man3/mongoc_gridfs_bucket_upload_from_stream_with_id.3 710man/man3/mongoc_gridfs_bucket_upload_from_stream_with_id.3
659man/man3/mongoc_gridfs_create_file.3 711man/man3/mongoc_gridfs_create_file.3
660man/man3/mongoc_gridfs_create_file_from_stream.3 712man/man3/mongoc_gridfs_create_file_from_stream.3
661man/man3/mongoc_gridfs_destroy.3 713man/man3/mongoc_gridfs_destroy.3
662man/man3/mongoc_gridfs_drop.3 714man/man3/mongoc_gridfs_drop.3
663man/man3/mongoc_gridfs_file_destroy.3 715man/man3/mongoc_gridfs_file_destroy.3
664man/man3/mongoc_gridfs_file_error.3 716man/man3/mongoc_gridfs_file_error.3
665man/man3/mongoc_gridfs_file_get_aliases.3 717man/man3/mongoc_gridfs_file_get_aliases.3
666man/man3/mongoc_gridfs_file_get_chunk_size.3 718man/man3/mongoc_gridfs_file_get_chunk_size.3
667man/man3/mongoc_gridfs_file_get_content_type.3 719man/man3/mongoc_gridfs_file_get_content_type.3
668man/man3/mongoc_gridfs_file_get_filename.3 720man/man3/mongoc_gridfs_file_get_filename.3
669man/man3/mongoc_gridfs_file_get_id.3 721man/man3/mongoc_gridfs_file_get_id.3
670man/man3/mongoc_gridfs_file_get_length.3 722man/man3/mongoc_gridfs_file_get_length.3
671man/man3/mongoc_gridfs_file_get_md5.3 723man/man3/mongoc_gridfs_file_get_md5.3
672man/man3/mongoc_gridfs_file_get_metadata.3 724man/man3/mongoc_gridfs_file_get_metadata.3
673man/man3/mongoc_gridfs_file_get_upload_date.3 725man/man3/mongoc_gridfs_file_get_upload_date.3
674man/man3/mongoc_gridfs_file_list_destroy.3 726man/man3/mongoc_gridfs_file_list_destroy.3
675man/man3/mongoc_gridfs_file_list_error.3 727man/man3/mongoc_gridfs_file_list_error.3
676man/man3/mongoc_gridfs_file_list_next.3 728man/man3/mongoc_gridfs_file_list_next.3
677man/man3/mongoc_gridfs_file_list_t.3 729man/man3/mongoc_gridfs_file_list_t.3
678man/man3/mongoc_gridfs_file_opt_t.3 730man/man3/mongoc_gridfs_file_opt_t.3
679man/man3/mongoc_gridfs_file_readv.3 731man/man3/mongoc_gridfs_file_readv.3
680man/man3/mongoc_gridfs_file_remove.3 732man/man3/mongoc_gridfs_file_remove.3
681man/man3/mongoc_gridfs_file_save.3 733man/man3/mongoc_gridfs_file_save.3
682man/man3/mongoc_gridfs_file_seek.3 734man/man3/mongoc_gridfs_file_seek.3
683man/man3/mongoc_gridfs_file_set_aliases.3 735man/man3/mongoc_gridfs_file_set_aliases.3
684man/man3/mongoc_gridfs_file_set_content_type.3 736man/man3/mongoc_gridfs_file_set_content_type.3
685man/man3/mongoc_gridfs_file_set_filename.3 737man/man3/mongoc_gridfs_file_set_filename.3
686man/man3/mongoc_gridfs_file_set_id.3 738man/man3/mongoc_gridfs_file_set_id.3
687man/man3/mongoc_gridfs_file_set_md5.3 739man/man3/mongoc_gridfs_file_set_md5.3
688man/man3/mongoc_gridfs_file_set_metadata.3 740man/man3/mongoc_gridfs_file_set_metadata.3
689man/man3/mongoc_gridfs_file_t.3 741man/man3/mongoc_gridfs_file_t.3
690man/man3/mongoc_gridfs_file_tell.3 742man/man3/mongoc_gridfs_file_tell.3
691man/man3/mongoc_gridfs_file_writev.3 743man/man3/mongoc_gridfs_file_writev.3
692man/man3/mongoc_gridfs_find.3 744man/man3/mongoc_gridfs_find.3
693man/man3/mongoc_gridfs_find_one.3 745man/man3/mongoc_gridfs_find_one.3
694man/man3/mongoc_gridfs_find_one_by_filename.3 746man/man3/mongoc_gridfs_find_one_by_filename.3
695man/man3/mongoc_gridfs_find_one_with_opts.3 747man/man3/mongoc_gridfs_find_one_with_opts.3
696man/man3/mongoc_gridfs_find_with_opts.3 748man/man3/mongoc_gridfs_find_with_opts.3
697man/man3/mongoc_gridfs_get_chunks.3 749man/man3/mongoc_gridfs_get_chunks.3
698man/man3/mongoc_gridfs_get_files.3 750man/man3/mongoc_gridfs_get_files.3
699man/man3/mongoc_gridfs_remove_by_filename.3 751man/man3/mongoc_gridfs_remove_by_filename.3
700man/man3/mongoc_gridfs_t.3 752man/man3/mongoc_gridfs_t.3
701man/man3/mongoc_guides.3 753man/man3/mongoc_guides.3
702man/man3/mongoc_host_list_t.3 754man/man3/mongoc_host_list_t.3
703man/man3/mongoc_index_opt_geo_get_default.3 755man/man3/mongoc_index_opt_geo_get_default.3
704man/man3/mongoc_index_opt_geo_init.3 756man/man3/mongoc_index_opt_geo_init.3
705man/man3/mongoc_index_opt_geo_t.3 757man/man3/mongoc_index_opt_geo_t.3
706man/man3/mongoc_index_opt_get_default.3 758man/man3/mongoc_index_opt_get_default.3
707man/man3/mongoc_index_opt_init.3 759man/man3/mongoc_index_opt_init.3
708man/man3/mongoc_index_opt_t.3 760man/man3/mongoc_index_opt_t.3
709man/man3/mongoc_index_opt_wt_get_default.3 761man/man3/mongoc_index_opt_wt_get_default.3
710man/man3/mongoc_index_opt_wt_init.3 762man/man3/mongoc_index_opt_wt_init.3
711man/man3/mongoc_index_opt_wt_t.3 763man/man3/mongoc_index_opt_wt_t.3
712man/man3/mongoc_init.3 764man/man3/mongoc_init.3
713man/man3/mongoc_init_cleanup.3 765man/man3/mongoc_init_cleanup.3
714man/man3/mongoc_insert_flags_t.3 766man/man3/mongoc_insert_flags_t.3
715man/man3/mongoc_installing.3 767man/man3/mongoc_installing.3
716man/man3/mongoc_iovec_t.3 768man/man3/mongoc_iovec_t.3
717man/man3/mongoc_logging.3 769man/man3/mongoc_logging.3
718man/man3/mongoc_matcher.3 770man/man3/mongoc_matcher.3
719man/man3/mongoc_matcher_destroy.3 771man/man3/mongoc_matcher_destroy.3
720man/man3/mongoc_matcher_match.3 772man/man3/mongoc_matcher_match.3
721man/man3/mongoc_matcher_new.3 773man/man3/mongoc_matcher_new.3
722man/man3/mongoc_matcher_t.3 774man/man3/mongoc_matcher_t.3
723man/man3/mongoc_query_flags_t.3 775man/man3/mongoc_query_flags_t.3
724man/man3/mongoc_rand.3 776man/man3/mongoc_rand.3
725man/man3/mongoc_rand_add.3 777man/man3/mongoc_rand_add.3
726man/man3/mongoc_rand_seed.3 778man/man3/mongoc_rand_seed.3
727man/man3/mongoc_rand_status.3 779man/man3/mongoc_rand_status.3
728man/man3/mongoc_read_concern_append.3 780man/man3/mongoc_read_concern_append.3
729man/man3/mongoc_read_concern_copy.3 781man/man3/mongoc_read_concern_copy.3
730man/man3/mongoc_read_concern_destroy.3 782man/man3/mongoc_read_concern_destroy.3
731man/man3/mongoc_read_concern_get_level.3 783man/man3/mongoc_read_concern_get_level.3
732man/man3/mongoc_read_concern_is_default.3 784man/man3/mongoc_read_concern_is_default.3
733man/man3/mongoc_read_concern_new.3 785man/man3/mongoc_read_concern_new.3
734man/man3/mongoc_read_concern_set_level.3 786man/man3/mongoc_read_concern_set_level.3
735man/man3/mongoc_read_concern_t.3 787man/man3/mongoc_read_concern_t.3
736man/man3/mongoc_read_mode_t.3 788man/man3/mongoc_read_mode_t.3
737man/man3/mongoc_read_prefs_add_tag.3 789man/man3/mongoc_read_prefs_add_tag.3
738man/man3/mongoc_read_prefs_copy.3 790man/man3/mongoc_read_prefs_copy.3
739man/man3/mongoc_read_prefs_destroy.3 791man/man3/mongoc_read_prefs_destroy.3
740man/man3/mongoc_read_prefs_get_max_staleness_seconds.3 792man/man3/mongoc_read_prefs_get_max_staleness_seconds.3
741man/man3/mongoc_read_prefs_get_mode.3 793man/man3/mongoc_read_prefs_get_mode.3
742man/man3/mongoc_read_prefs_get_tags.3 794man/man3/mongoc_read_prefs_get_tags.3
743man/man3/mongoc_read_prefs_is_valid.3 795man/man3/mongoc_read_prefs_is_valid.3
744man/man3/mongoc_read_prefs_new.3 796man/man3/mongoc_read_prefs_new.3
745man/man3/mongoc_read_prefs_set_max_staleness_seconds.3 797man/man3/mongoc_read_prefs_set_max_staleness_seconds.3
746man/man3/mongoc_read_prefs_set_mode.3 798man/man3/mongoc_read_prefs_set_mode.3
747man/man3/mongoc_read_prefs_set_tags.3 799man/man3/mongoc_read_prefs_set_tags.3
748man/man3/mongoc_read_prefs_t.3 800man/man3/mongoc_read_prefs_t.3
749man/man3/mongoc_reference.3 801man/man3/mongoc_reference.3
750man/man3/mongoc_remove_flags_t.3 802man/man3/mongoc_remove_flags_t.3
751man/man3/mongoc_reply_flags_t.3 803man/man3/mongoc_reply_flags_t.3
752man/man3/mongoc_server_description_destroy.3 804man/man3/mongoc_server_description_destroy.3
753man/man3/mongoc_server_description_host.3 805man/man3/mongoc_server_description_host.3
754man/man3/mongoc_server_description_id.3 806man/man3/mongoc_server_description_id.3
755man/man3/mongoc_server_description_ismaster.3 807man/man3/mongoc_server_description_ismaster.3
756man/man3/mongoc_server_description_last_update_time.3 808man/man3/mongoc_server_description_last_update_time.3
757man/man3/mongoc_server_description_new_copy.3 809man/man3/mongoc_server_description_new_copy.3
758man/man3/mongoc_server_description_round_trip_time.3 810man/man3/mongoc_server_description_round_trip_time.3
759man/man3/mongoc_server_description_t.3 811man/man3/mongoc_server_description_t.3
760man/man3/mongoc_server_description_type.3 812man/man3/mongoc_server_description_type.3
761man/man3/mongoc_server_descriptions_destroy_all.3 813man/man3/mongoc_server_descriptions_destroy_all.3
762man/man3/mongoc_session_opt_t.3 814man/man3/mongoc_session_opt_t.3
763man/man3/mongoc_session_opts_clone.3 815man/man3/mongoc_session_opts_clone.3
764man/man3/mongoc_session_opts_destroy.3 816man/man3/mongoc_session_opts_destroy.3
765man/man3/mongoc_session_opts_get_causal_consistency.3 817man/man3/mongoc_session_opts_get_causal_consistency.3
766man/man3/mongoc_session_opts_get_default_transaction_opts.3 818man/man3/mongoc_session_opts_get_default_transaction_opts.3
 819man/man3/mongoc_session_opts_get_transaction_opts.3
767man/man3/mongoc_session_opts_new.3 820man/man3/mongoc_session_opts_new.3
768man/man3/mongoc_session_opts_set_causal_consistency.3 821man/man3/mongoc_session_opts_set_causal_consistency.3
769man/man3/mongoc_session_opts_set_default_transaction_opts.3 822man/man3/mongoc_session_opts_set_default_transaction_opts.3
770man/man3/mongoc_socket_accept.3 823man/man3/mongoc_socket_accept.3
771man/man3/mongoc_socket_bind.3 824man/man3/mongoc_socket_bind.3
772man/man3/mongoc_socket_close.3 825man/man3/mongoc_socket_close.3
773man/man3/mongoc_socket_connect.3 826man/man3/mongoc_socket_connect.3
774man/man3/mongoc_socket_destroy.3 827man/man3/mongoc_socket_destroy.3
775man/man3/mongoc_socket_errno.3 828man/man3/mongoc_socket_errno.3
776man/man3/mongoc_socket_getnameinfo.3 829man/man3/mongoc_socket_getnameinfo.3
777man/man3/mongoc_socket_getsockname.3 830man/man3/mongoc_socket_getsockname.3
778man/man3/mongoc_socket_listen.3 831man/man3/mongoc_socket_listen.3
779man/man3/mongoc_socket_new.3 832man/man3/mongoc_socket_new.3
780man/man3/mongoc_socket_recv.3 833man/man3/mongoc_socket_recv.3
781man/man3/mongoc_socket_send.3 834man/man3/mongoc_socket_send.3
782man/man3/mongoc_socket_sendv.3 835man/man3/mongoc_socket_sendv.3
783man/man3/mongoc_socket_setsockopt.3 836man/man3/mongoc_socket_setsockopt.3
784man/man3/mongoc_socket_t.3 837man/man3/mongoc_socket_t.3
785man/man3/mongoc_ssl_opt_get_default.3 838man/man3/mongoc_ssl_opt_get_default.3
786man/man3/mongoc_ssl_opt_t.3 839man/man3/mongoc_ssl_opt_t.3
787man/man3/mongoc_stream_buffered_new.3 840man/man3/mongoc_stream_buffered_new.3
788man/man3/mongoc_stream_buffered_t.3 841man/man3/mongoc_stream_buffered_t.3
789man/man3/mongoc_stream_close.3 842man/man3/mongoc_stream_close.3
790man/man3/mongoc_stream_cork.3 843man/man3/mongoc_stream_cork.3
791man/man3/mongoc_stream_destroy.3 844man/man3/mongoc_stream_destroy.3
792man/man3/mongoc_stream_file_get_fd.3 845man/man3/mongoc_stream_file_get_fd.3
793man/man3/mongoc_stream_file_new.3 846man/man3/mongoc_stream_file_new.3
794man/man3/mongoc_stream_file_new_for_path.3 847man/man3/mongoc_stream_file_new_for_path.3
795man/man3/mongoc_stream_file_t.3 848man/man3/mongoc_stream_file_t.3
796man/man3/mongoc_stream_flush.3 849man/man3/mongoc_stream_flush.3
797man/man3/mongoc_stream_get_base_stream.3 850man/man3/mongoc_stream_get_base_stream.3
798man/man3/mongoc_stream_gridfs_new.3 851man/man3/mongoc_stream_gridfs_new.3
799man/man3/mongoc_stream_read.3 852man/man3/mongoc_stream_read.3
800man/man3/mongoc_stream_readv.3 853man/man3/mongoc_stream_readv.3
801man/man3/mongoc_stream_setsockopt.3 854man/man3/mongoc_stream_setsockopt.3
802man/man3/mongoc_stream_should_retry.3 855man/man3/mongoc_stream_should_retry.3
803man/man3/mongoc_stream_socket_get_socket.3 856man/man3/mongoc_stream_socket_get_socket.3
804man/man3/mongoc_stream_socket_new.3 857man/man3/mongoc_stream_socket_new.3
805man/man3/mongoc_stream_socket_t.3 858man/man3/mongoc_stream_socket_t.3
806man/man3/mongoc_stream_t.3 859man/man3/mongoc_stream_t.3
807man/man3/mongoc_stream_timed_out.3 860man/man3/mongoc_stream_timed_out.3
808man/man3/mongoc_stream_tls_t.3 861man/man3/mongoc_stream_tls_t.3
809man/man3/mongoc_stream_uncork.3 862man/man3/mongoc_stream_uncork.3
810man/man3/mongoc_stream_write.3 863man/man3/mongoc_stream_write.3
811man/man3/mongoc_stream_writev.3 864man/man3/mongoc_stream_writev.3
812man/man3/mongoc_topology_description_get_servers.3 865man/man3/mongoc_topology_description_get_servers.3
813man/man3/mongoc_topology_description_has_readable_server.3 866man/man3/mongoc_topology_description_has_readable_server.3
814man/man3/mongoc_topology_description_has_writable_server.3 867man/man3/mongoc_topology_description_has_writable_server.3
815man/man3/mongoc_topology_description_t.3 868man/man3/mongoc_topology_description_t.3
816man/man3/mongoc_topology_description_type.3 869man/man3/mongoc_topology_description_type.3
817man/man3/mongoc_transaction_opt_t.3 870man/man3/mongoc_transaction_opt_t.3
818man/man3/mongoc_transaction_opts_clone.3 871man/man3/mongoc_transaction_opts_clone.3
819man/man3/mongoc_transaction_opts_destroy.3 872man/man3/mongoc_transaction_opts_destroy.3
 873man/man3/mongoc_transaction_opts_get_max_commit_time_ms.3
820man/man3/mongoc_transaction_opts_get_read_concern.3 874man/man3/mongoc_transaction_opts_get_read_concern.3
821man/man3/mongoc_transaction_opts_get_read_prefs.3 875man/man3/mongoc_transaction_opts_get_read_prefs.3
822man/man3/mongoc_transaction_opts_get_write_concern.3 876man/man3/mongoc_transaction_opts_get_write_concern.3
823man/man3/mongoc_transaction_opts_new.3 877man/man3/mongoc_transaction_opts_new.3
 878man/man3/mongoc_transaction_opts_set_max_commit_time_ms.3
824man/man3/mongoc_transaction_opts_set_read_concern.3 879man/man3/mongoc_transaction_opts_set_read_concern.3
825man/man3/mongoc_transaction_opts_set_read_prefs.3 880man/man3/mongoc_transaction_opts_set_read_prefs.3
826man/man3/mongoc_transaction_opts_set_write_concern.3 881man/man3/mongoc_transaction_opts_set_write_concern.3
 882man/man3/mongoc_transaction_state_t.3
827man/man3/mongoc_tutorial.3 883man/man3/mongoc_tutorial.3
828man/man3/mongoc_update_flags_t.3 884man/man3/mongoc_update_flags_t.3
829man/man3/mongoc_uri_copy.3 885man/man3/mongoc_uri_copy.3
830man/man3/mongoc_uri_destroy.3 886man/man3/mongoc_uri_destroy.3
831man/man3/mongoc_uri_get_auth_mechanism.3 887man/man3/mongoc_uri_get_auth_mechanism.3
832man/man3/mongoc_uri_get_auth_source.3 888man/man3/mongoc_uri_get_auth_source.3
833man/man3/mongoc_uri_get_compressors.3 889man/man3/mongoc_uri_get_compressors.3
834man/man3/mongoc_uri_get_database.3 890man/man3/mongoc_uri_get_database.3
835man/man3/mongoc_uri_get_hosts.3 891man/man3/mongoc_uri_get_hosts.3
836man/man3/mongoc_uri_get_mechanism_properties.3 892man/man3/mongoc_uri_get_mechanism_properties.3
837man/man3/mongoc_uri_get_option_as_bool.3 893man/man3/mongoc_uri_get_option_as_bool.3
838man/man3/mongoc_uri_get_option_as_int32.3 894man/man3/mongoc_uri_get_option_as_int32.3
 895man/man3/mongoc_uri_get_option_as_int64.3
839man/man3/mongoc_uri_get_option_as_utf8.3 896man/man3/mongoc_uri_get_option_as_utf8.3
840man/man3/mongoc_uri_get_options.3 897man/man3/mongoc_uri_get_options.3
841man/man3/mongoc_uri_get_password.3 898man/man3/mongoc_uri_get_password.3
842man/man3/mongoc_uri_get_read_concern.3 899man/man3/mongoc_uri_get_read_concern.3
843man/man3/mongoc_uri_get_read_prefs.3 900man/man3/mongoc_uri_get_read_prefs.3
844man/man3/mongoc_uri_get_read_prefs_t.3 901man/man3/mongoc_uri_get_read_prefs_t.3
845man/man3/mongoc_uri_get_replica_set.3 902man/man3/mongoc_uri_get_replica_set.3
846man/man3/mongoc_uri_get_service.3 903man/man3/mongoc_uri_get_service.3
847man/man3/mongoc_uri_get_ssl.3 904man/man3/mongoc_uri_get_ssl.3
848man/man3/mongoc_uri_get_string.3 905man/man3/mongoc_uri_get_string.3
 906man/man3/mongoc_uri_get_tls.3
849man/man3/mongoc_uri_get_username.3 907man/man3/mongoc_uri_get_username.3
850man/man3/mongoc_uri_get_write_concern.3 908man/man3/mongoc_uri_get_write_concern.3
851man/man3/mongoc_uri_new.3 909man/man3/mongoc_uri_new.3
852man/man3/mongoc_uri_new_for_host_port.3 910man/man3/mongoc_uri_new_for_host_port.3
853man/man3/mongoc_uri_new_with_error.3 911man/man3/mongoc_uri_new_with_error.3
854man/man3/mongoc_uri_option_is_bool.3 912man/man3/mongoc_uri_option_is_bool.3
855man/man3/mongoc_uri_option_is_int32.3 913man/man3/mongoc_uri_option_is_int32.3
 914man/man3/mongoc_uri_option_is_int64.3
856man/man3/mongoc_uri_option_is_utf8.3 915man/man3/mongoc_uri_option_is_utf8.3
857man/man3/mongoc_uri_set_auth_mechanism.3 916man/man3/mongoc_uri_set_auth_mechanism.3
858man/man3/mongoc_uri_set_auth_source.3 917man/man3/mongoc_uri_set_auth_source.3
859man/man3/mongoc_uri_set_compressors.3 918man/man3/mongoc_uri_set_compressors.3
860man/man3/mongoc_uri_set_database.3 919man/man3/mongoc_uri_set_database.3
861man/man3/mongoc_uri_set_mechanism_properties.3 920man/man3/mongoc_uri_set_mechanism_properties.3
862man/man3/mongoc_uri_set_option_as_bool.3 921man/man3/mongoc_uri_set_option_as_bool.3
863man/man3/mongoc_uri_set_option_as_int32.3 922man/man3/mongoc_uri_set_option_as_int32.3
 923man/man3/mongoc_uri_set_option_as_int64.3
864man/man3/mongoc_uri_set_option_as_utf8.3 924man/man3/mongoc_uri_set_option_as_utf8.3
865man/man3/mongoc_uri_set_password.3 925man/man3/mongoc_uri_set_password.3
866man/man3/mongoc_uri_set_read_concern.3 926man/man3/mongoc_uri_set_read_concern.3
867man/man3/mongoc_uri_set_read_prefs_t.3 927man/man3/mongoc_uri_set_read_prefs_t.3
868man/man3/mongoc_uri_set_username.3 928man/man3/mongoc_uri_set_username.3
869man/man3/mongoc_uri_set_write_concern.3 929man/man3/mongoc_uri_set_write_concern.3
870man/man3/mongoc_uri_t.3 930man/man3/mongoc_uri_t.3
871man/man3/mongoc_uri_unescape.3 931man/man3/mongoc_uri_unescape.3
872man/man3/mongoc_version.3 932man/man3/mongoc_version.3
873man/man3/mongoc_write_concern_append.3 933man/man3/mongoc_write_concern_append.3
874man/man3/mongoc_write_concern_copy.3 934man/man3/mongoc_write_concern_copy.3
875man/man3/mongoc_write_concern_destroy.3 935man/man3/mongoc_write_concern_destroy.3
876man/man3/mongoc_write_concern_get_fsync.3 936man/man3/mongoc_write_concern_get_fsync.3
877man/man3/mongoc_write_concern_get_journal.3 937man/man3/mongoc_write_concern_get_journal.3
878man/man3/mongoc_write_concern_get_w.3 938man/man3/mongoc_write_concern_get_w.3
879man/man3/mongoc_write_concern_get_wmajority.3 939man/man3/mongoc_write_concern_get_wmajority.3
880man/man3/mongoc_write_concern_get_wtag.3 940man/man3/mongoc_write_concern_get_wtag.3
881man/man3/mongoc_write_concern_get_wtimeout.3 941man/man3/mongoc_write_concern_get_wtimeout.3
 942man/man3/mongoc_write_concern_get_wtimeout_int64.3
882man/man3/mongoc_write_concern_is_acknowledged.3 943man/man3/mongoc_write_concern_is_acknowledged.3
883man/man3/mongoc_write_concern_is_default.3 944man/man3/mongoc_write_concern_is_default.3
884man/man3/mongoc_write_concern_is_valid.3 945man/man3/mongoc_write_concern_is_valid.3
885man/man3/mongoc_write_concern_journal_is_set.3 946man/man3/mongoc_write_concern_journal_is_set.3
886man/man3/mongoc_write_concern_new.3 947man/man3/mongoc_write_concern_new.3
887man/man3/mongoc_write_concern_set_fsync.3 948man/man3/mongoc_write_concern_set_fsync.3
888man/man3/mongoc_write_concern_set_journal.3 949man/man3/mongoc_write_concern_set_journal.3
889man/man3/mongoc_write_concern_set_w.3 950man/man3/mongoc_write_concern_set_w.3
890man/man3/mongoc_write_concern_set_wmajority.3 951man/man3/mongoc_write_concern_set_wmajority.3
891man/man3/mongoc_write_concern_set_wtag.3 952man/man3/mongoc_write_concern_set_wtag.3
892man/man3/mongoc_write_concern_set_wtimeout.3 953man/man3/mongoc_write_concern_set_wtimeout.3
 954man/man3/mongoc_write_concern_set_wtimeout_int64.3
893man/man3/mongoc_write_concern_t.3 955man/man3/mongoc_write_concern_t.3
894share/mongo-c-driver/COPYING 956share/mongo-c-driver/COPYING
895share/mongo-c-driver/NEWS 957share/mongo-c-driver/NEWS
896share/mongo-c-driver/README.rst 958share/mongo-c-driver/README.rst
897share/mongo-c-driver/THIRD_PARTY_NOTICES 959share/mongo-c-driver/THIRD_PARTY_NOTICES

cvs diff -r1.35 -r1.36 pkgsrc/databases/mongo-c-driver/distinfo (switch to unified diff)

--- pkgsrc/databases/mongo-c-driver/distinfo 2019/03/05 14:24:13 1.35
+++ pkgsrc/databases/mongo-c-driver/distinfo 2020/02/06 20:20:42 1.36
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.35 2019/03/05 14:24:13 adam Exp $ 1$NetBSD: distinfo,v 1.36 2020/02/06 20:20:42 adam Exp $
2 2
3SHA1 (mongo-c-driver-1.14.0.tar.gz) = 4e2dc235cd6a5dfbd0dfb7b15bf6e07cc7358752 3SHA1 (mongo-c-driver-1.16.1.tar.gz) = f9bd005195895538af821708112bf861090da354
4RMD160 (mongo-c-driver-1.14.0.tar.gz) = 1e4804d27735d7fcc4a120a3fc83fa0131f85883 4RMD160 (mongo-c-driver-1.16.1.tar.gz) = ea611d4ad2e602a9e28283f79584df8b15dd9899
5SHA512 (mongo-c-driver-1.14.0.tar.gz) = 99ca4001341d044a8ffc02a5d7175d40f8a998bdaad15a668a7db0558fa616ec18152faeda6da7f28b34c5d2cf4b649180c9390d2229e1342b6c4f6742816994 5SHA512 (mongo-c-driver-1.16.1.tar.gz) = 96257f0613cf65f8324aa447dc302e59619e86975d39fb623bb408d38a2ad6298106df83813d5a83a33cc2c9fd357309015992838ac3ea54d6db2e2f497ce56a
6Size (mongo-c-driver-1.14.0.tar.gz) = 6573651 bytes 6Size (mongo-c-driver-1.16.1.tar.gz) = 6888267 bytes