File tree 2 files changed +1
-10
lines changed
2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -437,15 +437,6 @@ namespace mongo {
437
437
438
438
void Socket::close () {
439
439
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
449
440
// Stop any blocking reads/writes, and prevent new reads/writes
450
441
#if defined(_WIN32)
451
442
shutdown ( _fd, SD_BOTH );
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ namespace mongo {
31
31
* 1.2.3-rc4-pre-
32
32
* If you really need to do something else you'll need to fix _versionArray()
33
33
*/
34
- const char versionString[] = " 2.6.4 " ;
34
+ const char versionString[] = " 2.6.5 " ;
35
35
36
36
// See unit test for example outputs
37
37
BSONArray toVersionArray (const char * version){
You can’t perform that action at this time.
0 commit comments