Skip to content

Commit afe7e60

Browse files
author
taras
committed
Call UVStream.write directly from SSLProtocol
1 parent ab16cc3 commit afe7e60

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

uvloop/handles/stream.pxd

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ cdef class UVStream(UVBaseTransport):
1616
Py_buffer _read_pybuf
1717
bint _read_pybuf_acquired
1818

19+
cpdef write(self, object buf)
20+
1921
# All "inline" methods are final
2022

2123
cdef inline _init(self, Loop loop, object protocol, Server server,

uvloop/handles/stream.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ cdef class UVStream(UVBaseTransport):
676676
self.__reading,
677677
id(self))
678678

679-
def write(self, object buf):
679+
cpdef write(self, object buf):
680680
self._ensure_alive()
681681

682682
if self._eof:

uvloop/sslproto.pyx

+4-1
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,10 @@ cdef class SSLProtocol:
705705
if not self._ssl_writing_paused:
706706
data = self._outgoing_read()
707707
if len(data):
708-
self._transport.write(data)
708+
if isinstance(self._transport, UVStream):
709+
(<UVStream>self._transport).write(data)
710+
else:
711+
self._transport.write(data)
709712

710713
# Incoming flow
711714

0 commit comments

Comments
 (0)