Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1da3ba86
Kaydet (Commit)
1da3ba86
authored
Ara 04, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19509: Don't close the socket in do_handshake() when hostname verification fails.
üst
31d83228
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
ssl.py
Lib/ssl.py
+4
-9
No files found.
Lib/ssl.py
Dosyayı görüntüle @
1da3ba86
...
@@ -764,15 +764,10 @@ class SSLSocket(socket):
...
@@ -764,15 +764,10 @@ class SSLSocket(socket):
self
.
settimeout
(
timeout
)
self
.
settimeout
(
timeout
)
if
self
.
context
.
check_hostname
:
if
self
.
context
.
check_hostname
:
try
:
if
not
self
.
server_hostname
:
if
not
self
.
server_hostname
:
raise
ValueError
(
"check_hostname needs server_hostname "
raise
ValueError
(
"check_hostname needs server_hostname "
"argument"
)
"argument"
)
match_hostname
(
self
.
getpeercert
(),
self
.
server_hostname
)
match_hostname
(
self
.
getpeercert
(),
self
.
server_hostname
)
except
Exception
:
self
.
shutdown
(
_SHUT_RDWR
)
self
.
close
()
raise
def
_real_connect
(
self
,
addr
,
connect_ex
):
def
_real_connect
(
self
,
addr
,
connect_ex
):
if
self
.
server_side
:
if
self
.
server_side
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment