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
f0422421
Unverified
Kaydet (Commit)
f0422421
authored
May 14, 2018
tarafından
Alex Gaynor
Kaydeden (comit)
GitHub
May 14, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove `ifdef` check for an OpenSSL version (0.9.6) we don't support (GH-6800)
üst
2473eea6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
_ssl.c
Modules/_ssl.c
+2
-5
No files found.
Modules/_ssl.c
Dosyayı görüntüle @
f0422421
...
@@ -919,11 +919,8 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock,
...
@@ -919,11 +919,8 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock,
BIO_up_ref
(
outbio
->
bio
);
BIO_up_ref
(
outbio
->
bio
);
SSL_set_bio
(
self
->
ssl
,
inbio
->
bio
,
outbio
->
bio
);
SSL_set_bio
(
self
->
ssl
,
inbio
->
bio
,
outbio
->
bio
);
}
}
mode
=
SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER
;
SSL_set_mode
(
self
->
ssl
,
#ifdef SSL_MODE_AUTO_RETRY
SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER
|
SSL_MODE_AUTO_RETRY
);
mode
|=
SSL_MODE_AUTO_RETRY
;
#endif
SSL_set_mode
(
self
->
ssl
,
mode
);
if
(
server_hostname
!=
NULL
)
{
if
(
server_hostname
!=
NULL
)
{
if
(
_ssl_configure_hostname
(
self
,
server_hostname
)
<
0
)
{
if
(
_ssl_configure_hostname
(
self
,
server_hostname
)
<
0
)
{
...
...
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