Skip to content

Commit cd2d2e8

Browse files
committed
server: close TCP connection after closing websocket
Fixes #115 and #147.
1 parent dbf819d commit cd2d2e8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

trio_websocket/_impl.py

+6
Original file line numberDiff line numberDiff line change
@@ -1018,6 +1018,12 @@ async def _close_web_socket(self, code, reason=None):
10181018
exc = ConnectionClosed(self._close_reason)
10191019
logger.debug('%s websocket closed %r', self, exc)
10201020
await self._send_channel.aclose()
1021+
# RFC: "When a server is instructed to Close the WebSocket Connection
1022+
# it SHOULD initiate a TCP Close immediately, and when a client is
1023+
# instructed to do the same, it SHOULD wait for a TCP Close from the
1024+
# server."
1025+
if self.is_server:
1026+
await self._close_stream()
10211027

10221028
async def _get_request(self):
10231029
'''

0 commit comments

Comments
 (0)