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
02f32ab4
Kaydet (Commit)
02f32ab4
authored
Nis 01, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23834: Modify socket.sendall() to reuse sock_call() with
sock_send_impl()
üst
31bf2d50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
29 deletions
+21
-29
socketmodule.c
Modules/socketmodule.c
+21
-29
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
02f32ab4
...
...
@@ -3501,10 +3501,10 @@ static PyObject *
sock_sendall
(
PySocketSockObject
*
s
,
PyObject
*
args
)
{
char
*
buf
;
Py_ssize_t
len
,
n
=
-
1
;
int
async_err
=
0
;
int
flags
=
0
,
timeout
;
Py_ssize_t
len
,
n
;
int
flags
=
0
;
Py_buffer
pbuf
;
struct
sock_send
ctx
;
if
(
!
PyArg_ParseTuple
(
args
,
"y*|i:sendall"
,
&
pbuf
,
&
flags
))
return
NULL
;
...
...
@@ -3517,38 +3517,30 @@ sock_sendall(PySocketSockObject *s, PyObject *args)
}
do
{
timeout
=
internal_select
(
s
,
1
,
s
->
sock_timeout
);
n
=
-
1
;
if
(
!
timeout
)
{
Py_BEGIN_ALLOW_THREADS
#ifdef MS_WINDOWS
if
(
len
>
INT_MAX
)
len
=
INT_MAX
;
n
=
send
(
s
->
sock_fd
,
buf
,
(
int
)
len
,
flags
);
#else
n
=
send
(
s
->
sock_fd
,
buf
,
len
,
flags
);
#endif
Py_END_ALLOW_THREADS
}
if
(
timeout
==
1
)
{
ctx
.
buf
=
buf
;
ctx
.
len
=
len
;
ctx
.
flags
=
flags
;
if
(
sock_call
(
s
,
1
,
sock_send_impl
,
&
ctx
)
<
0
)
{
PyBuffer_Release
(
&
pbuf
);
PyErr_SetString
(
socket_timeout
,
"timed out"
);
return
NULL
;
}
if
(
n
>=
0
)
{
buf
+=
n
;
len
-=
n
;
n
=
ctx
.
result
;
assert
(
n
>=
0
);
buf
+=
n
;
len
-=
n
;
/* We must run our signal handlers before looping again.
send() can return a successful partial write when it is
interrupted, so we can't restrict ourselves to EINTR. */
if
(
PyErr_CheckSignals
())
{
PyBuffer_Release
(
&
pbuf
);
return
NULL
;
}
}
while
(
len
>
0
&&
(
n
>=
0
||
errno
==
EINTR
)
&&
!
(
async_err
=
PyErr_CheckSignals
()));
}
while
(
len
>
0
);
PyBuffer_Release
(
&
pbuf
);
if
(
n
<
0
||
async_err
)
return
(
!
async_err
)
?
s
->
errorhandler
()
:
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
Py_RETURN_NONE
;
}
PyDoc_STRVAR
(
sendall_doc
,
...
...
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