summaryrefslogtreecommitdiff
path: root/src/mongo/client/connection_string.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-31061 Add `mongo+srv://` support for URIs.ADAM David Alan Martin2017-10-311-3/+0
| | | | | | | | | The shell now supports parsing and handling `mongo+srv://` style URIs, as part of the DNS Seedlist support. These URIs require DNS SRV and TXT record lookups, for extra configuration options. The shell also supports a (limited) form of connection-failover -- when initially connecting to a non-replica-set cluster, the shell will try each host listed, in order, until a connection can be established.
* SERVER-24467 Make MoveChunkRequest and dependencies comparableKaloian Manassiev2016-06-131-3/+6
| | | | | This change implements the '==' operator on MoveChunkRequest and any dependent classes which do not have it.
* SERVER-24264 SERVER-23973 Replace calls to verify() in ConnectionString with ↵Spencer T Brody2016-05-241-5/+15
| | | | uassert
* SERVER-23857 dispatch shard creation by ConnectionString typeMisha Tyulenev2016-05-051-0/+12
|
* SERVER-22320 remove SYNC option and SyncClusterConnectionMisha Tyulenev2016-03-101-46/+24
|
* SERVER-6233 Add URI parsing to mongo shellJonathan Reams2015-10-131-12/+18
|
* SERVER-18567 Remove legacy ConnectionString::parseKaloian Manassiev2015-07-161-11/+0
| | | | | Removes the legacy ConnectionString::parse method and make all places use the variant, which returns StatusWith<ConnectionString>.
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-124/+120
|
* SERVER-18464 Implement ReplicaSetMonitorManager to replace staticsKaloian Manassiev2015-06-111-0/+13
| | | | | | | | | The ReplicaSetMonitorManager will be responsible for the lifetime of replica set monitors and will replaces the global static variables, which we currently use to track the replica set monitors. This change brings us closer to having a separate instance of the replica set monitors for MongoS.
* SERVER-18567 Implement ConnectionString::parse which returns StatusWithKaloian Manassiev2015-05-211-36/+112
|
* SERVER-18568 Remove ConnectionString::PAIRKaloian Manassiev2015-05-201-15/+4
| | | | It is not used anywhere.
* SERVER-18070 Split ConnectionString out into its own librarySpencer T Brody2015-04-161-0/+168