blob: 7354c690d499e11b96720eef8ffbf99c3a65f934 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
|
include/libmongoc-1.0/mongoc/mongoc-apm.h
include/libmongoc-1.0/mongoc/mongoc-bulk-operation.h
include/libmongoc-1.0/mongoc/mongoc-bulkwrite.h
include/libmongoc-1.0/mongoc/mongoc-change-stream.h
include/libmongoc-1.0/mongoc/mongoc-client-pool.h
include/libmongoc-1.0/mongoc/mongoc-client-session.h
include/libmongoc-1.0/mongoc/mongoc-client-side-encryption.h
include/libmongoc-1.0/mongoc/mongoc-client.h
include/libmongoc-1.0/mongoc/mongoc-collection.h
include/libmongoc-1.0/mongoc/mongoc-config.h
include/libmongoc-1.0/mongoc/mongoc-cursor.h
include/libmongoc-1.0/mongoc/mongoc-database.h
include/libmongoc-1.0/mongoc/mongoc-error.h
include/libmongoc-1.0/mongoc/mongoc-find-and-modify.h
include/libmongoc-1.0/mongoc/mongoc-flags.h
include/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h
include/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h
include/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h
include/libmongoc-1.0/mongoc/mongoc-gridfs-file.h
include/libmongoc-1.0/mongoc/mongoc-gridfs.h
include/libmongoc-1.0/mongoc/mongoc-handshake.h
include/libmongoc-1.0/mongoc/mongoc-host-list.h
include/libmongoc-1.0/mongoc/mongoc-index.h
include/libmongoc-1.0/mongoc/mongoc-init.h
include/libmongoc-1.0/mongoc/mongoc-iovec.h
include/libmongoc-1.0/mongoc/mongoc-log.h
include/libmongoc-1.0/mongoc/mongoc-macros.h
include/libmongoc-1.0/mongoc/mongoc-matcher.h
include/libmongoc-1.0/mongoc/mongoc-opcode.h
include/libmongoc-1.0/mongoc/mongoc-optional.h
include/libmongoc-1.0/mongoc/mongoc-prelude.h
include/libmongoc-1.0/mongoc/mongoc-rand.h
include/libmongoc-1.0/mongoc/mongoc-read-concern.h
include/libmongoc-1.0/mongoc/mongoc-read-prefs.h
include/libmongoc-1.0/mongoc/mongoc-server-api.h
include/libmongoc-1.0/mongoc/mongoc-server-description.h
include/libmongoc-1.0/mongoc/mongoc-sleep.h
include/libmongoc-1.0/mongoc/mongoc-socket.h
include/libmongoc-1.0/mongoc/mongoc-ssl.h
include/libmongoc-1.0/mongoc/mongoc-stream-buffered.h
include/libmongoc-1.0/mongoc/mongoc-stream-file.h
include/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h
include/libmongoc-1.0/mongoc/mongoc-stream-socket.h
include/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h
include/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h
include/libmongoc-1.0/mongoc/mongoc-stream-tls.h
include/libmongoc-1.0/mongoc/mongoc-stream.h
include/libmongoc-1.0/mongoc/mongoc-structured-log.h
include/libmongoc-1.0/mongoc/mongoc-topology-description.h
include/libmongoc-1.0/mongoc/mongoc-uri.h
include/libmongoc-1.0/mongoc/mongoc-version-functions.h
include/libmongoc-1.0/mongoc/mongoc-version.h
include/libmongoc-1.0/mongoc/mongoc-write-concern.h
include/libmongoc-1.0/mongoc/mongoc.h
include/libmongoc-1.0/mongoc.h
lib/cmake/libmongoc-1.0/libmongoc-1.0-config-version.cmake
lib/cmake/libmongoc-1.0/libmongoc-1.0-config.cmake
lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config-version.cmake
lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config.cmake
%%SASL%%lib/cmake/mongoc-1.0/3rdParty/FindSASL2.cmake
lib/cmake/mongoc-1.0/mongoc-1.0-config-version.cmake
lib/cmake/mongoc-1.0/mongoc-1.0-config.cmake
lib/cmake/mongoc-1.0/mongoc-targets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/mongoc-1.0/mongoc-targets.cmake
lib/cmake/mongoc-1.30.4/mongocConfig.cmake
lib/cmake/mongoc-1.30.4/mongocConfigVersion.cmake
lib/libmongoc-1.0.so
lib/libmongoc-1.0.so.0
lib/libmongoc-1.0.so.0.0.0
lib/libmongoc-static-1.0.a
libdata/pkgconfig/libmongoc-1.0.pc
%%SSL%%libdata/pkgconfig/libmongoc-ssl-1.0.pc
libdata/pkgconfig/libmongoc-static-1.0.pc
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/_sphinx_javascript_frameworks_compat.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/basic.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/debug.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/design-tabs.js
%%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/file.png
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/jquery-3.6.0.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/jquery.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/language_data.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/scripts/furo-extensions.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/scripts/furo.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/scripts/furo.js.LICENSE.txt
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/scripts/furo.js.map
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/searchtools.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/skeleton.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/sphinx_highlight.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/sphinx-design.4cbf315f70debaebd550c87a6162cf0f.min.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo-extensions.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo-extensions.css.map
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles/furo.css.map
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/styles.css
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/underscore-1.13.1.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/_static/underscore.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/api/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/api.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/application-performance-monitoring/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/application-performance-monitoring.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/errors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/errors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/full_index/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/full_index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/genindex/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/genindex.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/gridfs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/gridfs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/init-cleanup/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/init-cleanup.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/lifecycle/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/lifecycle.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/logging/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/logging.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_callbacks_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_command_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_command_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_database_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_database_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_duration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_duration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_operation_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_operation_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_reply/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_reply.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_request_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_request_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_connection_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_service_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_get_service_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_failed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_command.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_database_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_database_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_operation_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_operation_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_request_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_request_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_connection_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_service_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_get_service_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_started_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_command_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_command_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_database_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_database_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_duration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_duration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_operation_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_operation_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_reply/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_reply.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_request_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_request_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_connection_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_service_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_get_service_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_command_succeeded_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_new_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_new_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_previous_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_previous_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_changed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_closed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_awaited/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_awaited.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_duration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_duration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_failed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_awaited/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_awaited.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_started_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_awaited/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_awaited.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_duration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_duration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_reply/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_get_reply.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_heartbeat_succeeded_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_server_opening_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_failed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_failed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_started_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_started_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_succeeded_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_command_succeeded_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_changed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_changed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_closed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_closed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_failed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_failed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_started_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_started_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_succeeded_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_heartbeat_succeeded_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_opening_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_server_opening_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_changed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_changed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_closed_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_closed_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_opening_cb/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_set_topology_opening_cb.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_new_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_new_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_previous_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_previous_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_changed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_closed_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_context/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_context.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_topology_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_get_topology_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_apm_topology_opening_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_auto_encryption/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_auto_encryption.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_query_analysis/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_bypass_query_analysis.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_encrypted_fields_map/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_encrypted_fields_map.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_extra/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_extra.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_key_expiration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_key_expiration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client_pool/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client_pool.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_client.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_namespace/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_keyvault_namespace.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_credential_provider_callback/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_credential_provider_callback.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_providers/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_kms_providers.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_schema_map/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_schema_map.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_tls_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_set_tls_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_auto_encryption_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_delete.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_execute/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_execute.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_insert.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_many_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_many_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_remove.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_replace_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_bypass_document_validation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_bypass_document_validation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_client_session/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_client_session.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_comment/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_comment.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_let/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_let.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_set_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_many_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_many_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulk_operation_update.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deletemany/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deletemany.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deleteone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_deleteone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_insertone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_insertone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_replaceone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_replaceone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updatemany/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updatemany.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updateone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_append_updateone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_collation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_collation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deletemanyopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_collation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_collation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_deleteoneopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_execute/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_execute.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_insertoneopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_collation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_collation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_sort/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_sort.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_upsert/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_set_upsert.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_replaceoneopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_client/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_client.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_session/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_set_session.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_arrayfilters/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_arrayfilters.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_collation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_collation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_upsert/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_set_upsert.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updatemanyopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_arrayfilters/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_arrayfilters.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_collation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_collation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_sort/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_sort.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_upsert/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_set_upsert.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwrite_updateoneopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_errorreply/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_errorreply.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeconcernerrors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeconcernerrors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeerrors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteexception_writeerrors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_bypassdocumentvalidation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_bypassdocumentvalidation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_comment/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_comment.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_extra/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_extra.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_let/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_let.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_ordered/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_ordered.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_serverid/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_serverid.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_verboseresults/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_verboseresults.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_writeconcern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_set_writeconcern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteopts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deletedcount/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deletedcount.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deleteresults/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_deleteresults.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertedcount/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertedcount.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertresults/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_insertresults.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_matchedcount/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_matchedcount.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_modifiedcount/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_modifiedcount.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_serverid/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_serverid.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_updateresults/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_updateresults.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_upsertedcount/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwriteresult_upsertedcount.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwritereturn_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_bulkwritereturn_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_error_document/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_error_document.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_get_resume_token/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_get_resume_token.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_next/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_next.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_change_stream_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_check_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_check_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cleanup/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cleanup.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_bulkwrite_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_bulkwrite_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple_with_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple_with_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_simple.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_command.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_enable_auto_encryption/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_enable_auto_encryption.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_add_key_alt_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_add_key_alt_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_datakey/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_datakey.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_encrypted_collection/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_create_encrypted_collection.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keyaltnames/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keyaltnames.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keymaterial/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_keymaterial.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_masterkey/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_set_masterkey.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_datakey_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_decrypt/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_decrypt.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_delete_key/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_delete_key.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_expression/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_expression.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_algorithm/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_algorithm.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_contention_factor/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_contention_factor.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyaltname/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyaltname.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyid/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_keyid.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_query_type/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_query_type.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_range_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_set_range_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_max/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_max.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_min/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_min.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_precision/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_precision.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_sparsity/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_sparsity.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_trim_factor/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_set_trim_factor.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt_range_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_encrypt.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_crypt_shared_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_crypt_shared_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key_by_alt_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key_by_alt_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_key.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_keys/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_get_keys.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_key_expiration/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_key_expiration.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_client/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_client.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_namespace/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_keyvault_namespace.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_credential_provider_callback/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_credential_provider_callback.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_providers/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_kms_providers.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_tls_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_set_tls_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_remove_key_alt_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_remove_key_alt_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_get_bulk_write_result/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_get_bulk_write_result.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey_result_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_rewrap_many_datakey.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_encryption_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_find_databases_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_find_databases_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_collection/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_collection.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_crypt_shared_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_crypt_shared_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database_names.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_database.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_default_database/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_default_database.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_gridfs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_gridfs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_handshake_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_handshake_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_description/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_description.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_descriptions/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_descriptions.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_status/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_server_status.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_uri/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_uri.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri_with_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri_with_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new_from_uri.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_enable_auto_encryption/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_max_size.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_min_size/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_min_size.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new_with_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new_with_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_pop/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_pop.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_push/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_push.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_apm_callbacks/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_ssl_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_structured_log_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_set_structured_log_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_pool_try_pop/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_read_write_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_reset/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_reset.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_select_server/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_select_server.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_abort_transaction/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_advance_operation_time.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_append/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_append.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_commit_transaction/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_commit_transaction.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_client/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_dirty.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_get_lsid/index.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/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_in_transaction.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_start_transaction/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_start_transaction.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction_cb_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction_cb_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_session_with_transaction.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_apm_callbacks/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_apm_callbacks.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_appname/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_appname.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_error_api/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_error_api.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_server_api/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_server_api.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_sockettimeoutms/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_sockettimeoutms.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_ssl_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_ssl_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_stream_initiator/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_stream_initiator.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_structured_log_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_structured_log_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_set_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_start_session/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_start_session.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_watch/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_watch.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_write_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_client_write_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_aggregate/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_aggregate.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_simple/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_simple.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_command.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_documents/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_documents.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_count.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_bulk_operation.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_indexes_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_create_indexes_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_many/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_many.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_delete.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_drop.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_ensure_index/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_ensure_index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_estimated_document_count/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_estimated_document_count.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_and_modify.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_indexes.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_find.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_last_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_last_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_bulk/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_bulk.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_many/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_many.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_insert.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_keys_to_index_string/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_read_write_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_remove/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_remove.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_rename.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_replace_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_replace_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_save/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_save.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_set_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_stats/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_stats.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_many/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_many.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_update.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_validate/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_validate.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_watch/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_watch.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_write_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_collection_write_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_clone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_clone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_current/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_current.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error_document/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error_document.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_batch_size/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_batch_size.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_limit/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_max_await_time_ms.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_get_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_is_alive/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_is_alive.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_more/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_more.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_new_from_command_reply.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_next/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_next.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_batch_size/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_batch_size.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_hint/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_hint.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_limit/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_max_await_time_ms.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_server_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_set_server_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_cursor_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_add_user/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_add_user.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_aggregate/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_aggregate.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_simple/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_simple.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_command.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_create_collection/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_create_collection.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_drop.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_find_collections.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection_names.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_collection.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_has_collection/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_has_collection.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_read_command_with_opts/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_remove_all_users.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_remove_user/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_remove_user.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_set_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_watch/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_watch.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_write_command_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_database_write_command_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_delete_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_delete_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_error_has_label/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_error_has_label.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_append/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_find_and_modify_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_major_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_major_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_micro_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_micro_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_minor_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_minor_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_get_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_abort_upload/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_delete_by_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_download_to_stream/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_download_to_stream.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_find/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_find.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_open_download_stream/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_open_upload_stream_with_id/index.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_open_upload_stream.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_stream_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_stream_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream_with_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream_with_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_bucket_upload_from_stream.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file_from_stream/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file_from_stream.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_create_file.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_drop/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_drop.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_aliases/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_filename.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_length/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_length.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_md5/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_md5.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_get_metadata/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_error/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_next/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_next.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_list_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_opt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_opt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_readv/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_readv.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_remove/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_remove.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_save/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_save.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_seek/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_seek.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_aliases/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_filename.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_md5/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_md5.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_metadata/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_set_metadata.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_tell/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_tell.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_writev/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_file_writev.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one_by_filename/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_one.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_with_opts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find_with_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_find.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_chunks/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_chunks.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_files/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_get_files.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_remove_by_filename/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_remove_by_filename.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_gridfs_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_handshake_data_append/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_handshake_data_append.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_host_list_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_host_list_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_get_default/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_init.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_geo_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_get_default/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_get_default.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_init/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_init.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_get_default/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_init.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_index_opt_wt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_init/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_init.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_insert_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_insert_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_iovec_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_iovec_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_init/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_init.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_is_set/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_is_set.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_set_value/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_set_value.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_value/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_optional_value.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_query_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_query_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_add/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_add.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_seed/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_seed.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_status/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand_status.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_rand.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_append/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_append.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_get_level/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_get_level.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_is_default/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_is_default.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_set_level/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_set_level.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_concern_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_mode_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_mode_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_add_tag/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_add_tag.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_hedge/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_mode.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_tags/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_get_tags.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_is_valid/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_is_valid.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_hedge/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_mode.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_tags/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_set_tags.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_read_prefs_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_remove_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_remove_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_reply_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_reply_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_deprecation_errors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_deprecation_errors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_deprecation_errors/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_strict.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_get_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_strict/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_strict.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_version_from_string/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_api_version_to_string.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_hello_response/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_hello_response.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_host/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_host.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_id/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_id.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_ismaster/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_ismaster.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_last_update_time/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_round_trip_time.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_type/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_description_type.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_descriptions_destroy_all/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_server_descriptions_destroy_all.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_clone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_clone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_causal_consistency/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_get_transaction_opts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_set_causal_consistency/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_session_opts_set_snapshot.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_accept/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_accept.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_bind/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_bind.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_close/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_close.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_connect/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_connect.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_errno/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_errno.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getnameinfo/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getnameinfo.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getsockname/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_getsockname.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_listen/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_listen.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_recv/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_recv.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_send/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_send.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_sendv/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_sendv.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_setsockopt/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_setsockopt.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_socket_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_get_default/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_get_default.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_ssl_opt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_buffered_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_close/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_close.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_cork/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_cork.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_get_fd/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_get_fd.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new_for_path/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new_for_path.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_file_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_flush/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_flush.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_get_base_stream/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_get_base_stream.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_gridfs_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_gridfs_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_read/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_read.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_readv/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_readv.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_setsockopt/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_setsockopt.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_should_retry/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_should_retry.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_get_socket/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_get_socket.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_socket_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_timed_out/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_timed_out.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_tls_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_tls_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_uncork/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_uncork.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_write/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_write.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_writev/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_stream_writev.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_component_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_component_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_component/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_component.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_level/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_level.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_message_string/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_get_message_string.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_message_as_bson/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_message_as_bson.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_entry_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_func_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_func_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_component_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_component_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_level_name/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_level_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_named_component/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_named_component.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_named_level/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_get_named_level.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_level_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_level_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_get_max_document_length/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_get_max_document_length.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_get_max_level_for_component/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_get_max_level_for_component.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_handler/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_handler.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_document_length/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_document_length_from_env/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_document_length_from_env.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_document_length.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_level_for_all_components/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_level_for_all_components.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_level_for_component/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_level_for_component.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_levels_from_env/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_set_max_levels_from_env.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_structured_log_opts_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_get_servers/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_new_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_type/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_topology_description_type.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opt_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opt_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_clone/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_clone.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_destroy/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_new/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_opts_set_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_state_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_transaction_state_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_update_flags_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_update_flags_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_mechanism/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_mechanism.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_source/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_auth_source.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_compressors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_compressors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_database/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_database.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_hosts/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_hosts.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_mechanism_properties/index.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/index.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/index.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/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_option_as_utf8.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_options/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_options.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_password/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_password.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_read_prefs.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_replica_set/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_replica_set.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_server_monitoring_mode/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_server_monitoring_mode.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_service/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_service.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_srv_hostname/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_srv_service_name.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_ssl/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_ssl.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_string/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_string.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_tls/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_tls.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_username/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_username.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_get_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_has_option/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_has_option.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new_for_host_port/index.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/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new_with_error.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_bool/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_bool.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int32/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int32.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_utf8/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_option_is_utf8.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_auth_mechanism/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_auth_mechanism.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_auth_source/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_auth_source.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_compressors/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_compressors.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_database/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_database.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_mechanism_properties/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_mechanism_properties.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_bool/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_bool.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_int32/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_int32.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_utf8/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_option_as_utf8.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_password/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_password.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_read_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_read_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_read_prefs_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_read_prefs_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_server_monitoring_mode/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_server_monitoring_mode.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_username/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_username.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_write_concern/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_set_write_concern.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_unescape/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_uri_unescape.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_version/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_version.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_append/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_append.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_copy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_copy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_destroy/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_destroy.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_fsync/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_fsync.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_journal/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_journal.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_w/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_w.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wmajority/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wmajority.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtag/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtag.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtimeout/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtimeout_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtimeout_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_get_wtimeout.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_acknowledged/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_acknowledged.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_default/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_default.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_valid/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_is_valid.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_journal_is_set/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_journal_is_set.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_new/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_new.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_fsync/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_fsync.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_journal/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_journal.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_w/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_w.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wmajority/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wmajority.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtag/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtag.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtimeout/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtimeout_int64/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtimeout_int64.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_set_wtimeout.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_t/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/mongoc_write_concern_t.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/objects.inv
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/search/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/search.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/searchindex.js
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/structured_log/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/structured_log.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/unstructured_log/index.html
%%PORTDOCS%%%%DOCSDIR%%/mongo-c-driver/html/unstructured_log.html
%%PORTDOCS%%share/man/man3/mongoc_apm_callbacks_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_callbacks_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_callbacks_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_command_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_database_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_duration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_operation_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_reply.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_request_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_server_connection_id_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_server_connection_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_get_service_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_failed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_command_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_command.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_database_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_operation_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_request_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_server_connection_id_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_server_connection_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_get_service_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_started_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_command_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_database_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_duration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_operation_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_reply.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_request_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_server_connection_id_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_server_connection_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_get_service_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_command_succeeded_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_get_new_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_get_previous_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_changed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_closed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_closed_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_closed_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_closed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_get_awaited.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_get_duration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_get_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_failed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_started_get_awaited.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_started_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_started_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_started_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_get_awaited.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_get_duration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_get_reply.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_heartbeat_succeeded_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_opening_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_opening_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_opening_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_server_opening_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_command_failed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_command_started_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_command_succeeded_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_changed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_closed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_heartbeat_failed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_heartbeat_started_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_heartbeat_succeeded_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_server_opening_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_topology_changed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_topology_closed_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_set_topology_opening_cb.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_changed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_changed_get_new_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_changed_get_previous_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_changed_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_changed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_closed_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_closed_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_closed_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_opening_get_context.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_opening_get_topology_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_apm_topology_opening_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_application_performance_monitoring.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_bypass_auto_encryption.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_bypass_query_analysis.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_encrypted_fields_map.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_extra.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_key_expiration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_key_vault_client_pool.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_key_vault_client.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_key_vault_namespace.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_kms_credential_provider_callback.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_kms_providers.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_schema_map.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_set_tls_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_auto_encryption_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_delete_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_delete.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_execute.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_get_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_insert_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_insert.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_remove_many_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_remove_one_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_remove_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_remove.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_replace_one_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_replace_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_bypass_document_validation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_client_session.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_comment.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_let.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_set_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_update_many_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_update_one_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_update_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulk_operation_update.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_deletemany.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_deleteone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_insertone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_replaceone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_updatemany.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_append_updateone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deletemanyopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deletemanyopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deletemanyopts_set_collation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deletemanyopts_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deletemanyopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deleteoneopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deleteoneopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deleteoneopts_set_collation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deleteoneopts_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_deleteoneopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_execute.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_insertoneopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_insertoneopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_insertoneopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_set_collation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_set_sort.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_set_upsert.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_replaceoneopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_set_client.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_set_session.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_set_arrayfilters.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_set_collation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_set_upsert.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updatemanyopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_set_arrayfilters.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_set_collation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_set_sort.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_set_upsert.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwrite_updateoneopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_errorreply.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_writeconcernerrors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteexception_writeerrors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_bypassdocumentvalidation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_comment.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_extra.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_let.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_ordered.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_serverid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_verboseresults.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_set_writeconcern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteopts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_deletedcount.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_deleteresults.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_insertedcount.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_insertresults.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_matchedcount.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_modifiedcount.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_serverid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_updateresults.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwriteresult_upsertedcount.3.gz
%%PORTDOCS%%share/man/man3/mongoc_bulkwritereturn_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_change_stream_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_change_stream_error_document.3.gz
%%PORTDOCS%%share/man/man3/mongoc_change_stream_get_resume_token.3.gz
%%PORTDOCS%%share/man/man3/mongoc_change_stream_next.3.gz
%%PORTDOCS%%share/man/man3/mongoc_change_stream_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_check_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cleanup.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_bulkwrite_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_command_simple_with_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_command_simple.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_command.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_decryption_decrypt.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_enable_auto_encryption.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_add_key_alt_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_create_datakey.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_create_encrypted_collection.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_set_keyaltnames.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_set_keymaterial.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_set_masterkey.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_datakey_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_delete_key.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_expression.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_algorithm.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_contention_factor.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_keyaltname.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_keyid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_query_type.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_set_range_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_set_max.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_set_min.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_set_precision.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_set_sparsity.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_set_trim_factor.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt_range_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_encrypt.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_get_crypt_shared_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_get_key_by_alt_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_get_key.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_get_keys.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_key_expiration.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_key_vault_namespace.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_keyvault_client.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_kms_credential_provider_callback.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_kms_providers.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_set_tls_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_remove_key_alt_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_rewrap_many_datakey_result_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_rewrap_many_datakey_result_get_bulk_write_result.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_rewrap_many_datakey_result_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_rewrap_many_datakey_result_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_rewrap_many_datakey.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_encryption_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_find_databases_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_collection.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_crypt_shared_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_database_names_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_database_names.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_database.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_default_database.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_gridfs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_handshake_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_server_description.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_server_descriptions.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_server_status.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_uri.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_new_from_uri_with_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_new_from_uri.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_enable_auto_encryption.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_max_size.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_min_size.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_new_with_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_pop.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_push.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_apm_callbacks.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_appname.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_error_api.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_server_api.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_ssl_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_set_structured_log_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_pool_try_pop.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_read_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_read_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_reset.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_select_server.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_abort_transaction.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_advance_cluster_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_advance_operation_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_append.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_commit_transaction.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_client.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_cluster_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_dirty.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_lsid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_operation_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_get_transaction_state.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_in_transaction.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_start_transaction.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_with_transaction_cb_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_session_with_transaction.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_apm_callbacks.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_appname.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_error_api.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_server_api.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_sockettimeoutms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_ssl_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_stream_initiator.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_structured_log_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_set_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_start_session.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_watch.3.gz
%%PORTDOCS%%share/man/man3/mongoc_client_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_aggregate.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_command_simple.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_command.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_count_documents.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_count_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_count.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_create_bulk_operation_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_create_bulk_operation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_create_index_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_create_index.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_create_indexes_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_delete_many.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_delete_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_delete.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_drop_index_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_drop_index.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_drop_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_drop.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_ensure_index.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_estimated_document_count.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find_and_modify_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find_and_modify.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find_indexes_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find_indexes.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_find.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_get_last_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_get_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_get_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_get_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_insert_bulk.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_insert_many.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_insert_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_insert.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_keys_to_index_string.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_read_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_read_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_remove.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_rename_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_rename.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_replace_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_save.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_set_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_set_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_set_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_stats.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_update_many.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_update_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_update.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_validate.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_watch.3.gz
%%PORTDOCS%%share/man/man3/mongoc_collection_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_clone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_current.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_error_document.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_batch_size.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_limit.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_max_await_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_get_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_is_alive.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_more.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_new_from_command_reply_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_new_from_command_reply.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_next.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_set_batch_size.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_set_hint.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_set_limit.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_set_max_await_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_set_server_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_cursor_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_add_user.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_aggregate.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_command_simple.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_command.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_create_collection.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_drop_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_drop.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_find_collections_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_find_collections.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_collection_names_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_collection_names.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_collection.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_has_collection.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_read_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_read_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_remove_all_users.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_remove_user.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_set_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_set_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_set_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_watch.3.gz
%%PORTDOCS%%share/man/man3/mongoc_database_write_command_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_delete_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_error_has_label.3.gz
%%PORTDOCS%%share/man/man3/mongoc_errors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_append.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_bypass_document_validation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_fields.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_flags.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_max_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_sort.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_get_update.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_bypass_document_validation.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_fields.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_flags.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_max_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_sort.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_set_update.3.gz
%%PORTDOCS%%share/man/man3/mongoc_find_and_modify_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_get_major_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_get_micro_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_get_minor_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_get_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_abort_upload.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_delete_by_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_download_to_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_find.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_open_download_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_open_upload_stream_with_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_open_upload_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_stream_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_upload_from_stream_with_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_bucket_upload_from_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_create_file_from_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_create_file.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_drop.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_aliases.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_chunk_size.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_content_type.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_filename.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_length.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_md5.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_metadata.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_get_upload_date.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_list_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_list_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_list_next.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_list_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_opt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_readv.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_remove.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_save.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_seek.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_aliases.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_content_type.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_filename.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_md5.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_set_metadata.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_tell.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_file_writev.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_find_one_by_filename.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_find_one_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_find_one.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_find_with_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_find.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_get_chunks.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_get_files.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_remove_by_filename.3.gz
%%PORTDOCS%%share/man/man3/mongoc_gridfs_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_handshake_data_append.3.gz
%%PORTDOCS%%share/man/man3/mongoc_host_list_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_geo_get_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_geo_init.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_geo_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_get_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_init.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_wt_get_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_wt_init.3.gz
%%PORTDOCS%%share/man/man3/mongoc_index_opt_wt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_init_cleanup.3.gz
%%PORTDOCS%%share/man/man3/mongoc_init.3.gz
%%PORTDOCS%%share/man/man3/mongoc_insert_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_iovec_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_logging.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_init.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_is_set.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_set_value.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_optional_value.3.gz
%%PORTDOCS%%share/man/man3/mongoc_query_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_rand_add.3.gz
%%PORTDOCS%%share/man/man3/mongoc_rand_seed.3.gz
%%PORTDOCS%%share/man/man3/mongoc_rand_status.3.gz
%%PORTDOCS%%share/man/man3/mongoc_rand.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_append.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_get_level.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_is_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_set_level.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_concern_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_mode_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_add_tag.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_get_hedge.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_get_max_staleness_seconds.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_get_mode.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_get_tags.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_is_valid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_set_hedge.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_set_max_staleness_seconds.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_set_mode.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_set_tags.3.gz
%%PORTDOCS%%share/man/man3/mongoc_read_prefs_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_reference.3.gz
%%PORTDOCS%%share/man/man3/mongoc_remove_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_reply_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_deprecation_errors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_get_deprecation_errors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_get_strict.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_get_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_strict.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_version_from_string.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_version_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_api_version_to_string.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_hello_response.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_host.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_id.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_ismaster.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_last_update_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_new_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_round_trip_time.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_description_type.3.gz
%%PORTDOCS%%share/man/man3/mongoc_server_descriptions_destroy_all.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_clone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_get_causal_consistency.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_get_default_transaction_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_get_snapshot.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_get_transaction_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_set_causal_consistency.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_set_default_transaction_opts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_session_opts_set_snapshot.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_accept.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_bind.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_close.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_connect.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_errno.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_getnameinfo.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_getsockname.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_listen.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_recv.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_send.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_sendv.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_setsockopt.3.gz
%%PORTDOCS%%share/man/man3/mongoc_socket_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_ssl_opt_get_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_ssl_opt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_buffered_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_buffered_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_close.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_cork.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_file_get_fd.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_file_new_for_path.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_file_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_file_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_flush.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_get_base_stream.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_gridfs_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_read.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_readv.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_setsockopt.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_should_retry.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_socket_get_socket.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_socket_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_socket_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_timed_out.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_tls_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_uncork.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_write.3.gz
%%PORTDOCS%%share/man/man3/mongoc_stream_writev.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_component_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_entry_get_component.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_entry_get_level.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_entry_get_message_string.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_entry_message_as_bson.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_entry_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_func_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_get_component_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_get_level_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_get_named_component.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_get_named_level.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_level_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_get_max_document_length.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_get_max_level_for_component.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_handler.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_max_document_length_from_env.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_max_document_length.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_max_level_for_all_components.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_max_level_for_component.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_set_max_levels_from_env.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log_opts_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_structured_log.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_get_servers.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_has_readable_server.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_has_writable_server.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_new_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_topology_description_type.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opt_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_clone.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_get_max_commit_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_get_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_get_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_set_max_commit_time_ms.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_set_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_set_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_opts_set_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_transaction_state_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_unstructured_log.3.gz
%%PORTDOCS%%share/man/man3/mongoc_update_flags_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_auth_mechanism.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_auth_source.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_compressors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_database.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_hosts.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_mechanism_properties.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_option_as_bool.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_option_as_int32.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_option_as_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_option_as_utf8.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_options.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_password.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_read_prefs_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_read_prefs.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_replica_set.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_server_monitoring_mode.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_service.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_srv_hostname.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_srv_service_name.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_ssl.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_string.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_tls.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_username.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_get_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_has_option.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_new_for_host_port.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_new_with_error.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_option_is_bool.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_option_is_int32.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_option_is_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_option_is_utf8.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_auth_mechanism.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_auth_source.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_compressors.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_database.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_mechanism_properties.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_option_as_bool.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_option_as_int32.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_option_as_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_option_as_utf8.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_password.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_read_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_read_prefs_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_server_monitoring_mode.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_username.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_set_write_concern.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_t.3.gz
%%PORTDOCS%%share/man/man3/mongoc_uri_unescape.3.gz
%%PORTDOCS%%share/man/man3/mongoc_version.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_append.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_copy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_destroy.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_fsync.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_journal.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_w.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_wmajority.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_wtag.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_wtimeout_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_get_wtimeout.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_is_acknowledged.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_is_default.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_is_valid.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_journal_is_set.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_new.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_fsync.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_journal.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_w.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_wmajority.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_wtag.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_wtimeout_int64.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_set_wtimeout.3.gz
%%PORTDOCS%%share/man/man3/mongoc_write_concern_t.3.gz
%%DATADIR%%/COPYING
%%DATADIR%%/NEWS
%%DATADIR%%/README.rst
%%DATADIR%%/THIRD_PARTY_NOTICES
%%PORTDOCS%%@dir %%DOCSDIR%%/mongo-c-driver/html/_sphinx_design_static
%%PORTDOCS%%@dir %%DOCSDIR%%/mongo-c-driver/html/index
|