File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -437,15 +437,6 @@ namespace mongo {
437437
438438 void Socket::close () {
439439 if ( _fd >= 0 ) {
440- #ifdef MONGO_SSL
441- if (_sslConnection.get ()) {
442- try {
443- _sslManager->SSL_shutdown ( _sslConnection.get () );
444- }
445- catch (const SocketException&) { // SSL_shutdown may throw if the connection fails
446- }
447- }
448- #endif
449440 // Stop any blocking reads/writes, and prevent new reads/writes
450441#if defined(_WIN32)
451442 shutdown ( _fd, SD_BOTH );
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ namespace mongo {
3131 * 1.2.3-rc4-pre-
3232 * If you really need to do something else you'll need to fix _versionArray()
3333 */
34- const char versionString[] = " 2.6.4 " ;
34+ const char versionString[] = " 2.6.5 " ;
3535
3636 // See unit test for example outputs
3737 BSONArray toVersionArray (const char * version){
You can’t perform that action at this time.
0 commit comments