...

Source file src/go.mongodb.org/mongo-driver/internal/handshake/handshake.go

Documentation: go.mongodb.org/mongo-driver/internal/handshake

     1  // Copyright (C) MongoDB, Inc. 2017-present.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License"); you may
     4  // not use this file except in compliance with the License. You may obtain
     5  // a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
     6  
     7  package handshake
     8  
     9  // LegacyHello is the legacy version of the hello command.
    10  var LegacyHello = "isMaster"
    11  
    12  // LegacyHelloLowercase is the lowercase, legacy version of the hello command.
    13  var LegacyHelloLowercase = "ismaster"
    14  

View as plain text