File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ async def __aiter__(self) -> AsyncIterator[WebSocketClientProtocol]:
599
599
yield protocol
600
600
except Exception :
601
601
# Add a random initial delay between 0 and 5 seconds.
602
- # See 7.2.3. Recovering from Abnormal Closure in RFC 6544 .
602
+ # See 7.2.3. Recovering from Abnormal Closure in RFC 6455 .
603
603
if backoff_delay == self .BACKOFF_MIN :
604
604
initial_delay = random .random () * self .BACKOFF_INITIAL
605
605
self .logger .info (
Original file line number Diff line number Diff line change @@ -714,7 +714,7 @@ class CloseTests(ProtocolTestCase):
714
714
"""
715
715
Test close frames.
716
716
717
- See RFC 6544 :
717
+ See RFC 6455 :
718
718
719
719
5.5.1. Close
720
720
7.1.6. The WebSocket Connection Close Reason
@@ -994,7 +994,7 @@ def test_server_sends_close_after_connection_is_closed(self):
994
994
995
995
class PingTests (ProtocolTestCase ):
996
996
"""
997
- Test ping. See 5.5.2. Ping in RFC 6544 .
997
+ Test ping. See 5.5.2. Ping in RFC 6455 .
998
998
999
999
"""
1000
1000
@@ -1153,7 +1153,7 @@ def test_server_sends_ping_after_connection_is_closed(self):
1153
1153
1154
1154
class PongTests (ProtocolTestCase ):
1155
1155
"""
1156
- Test pong frames. See 5.5.3. Pong in RFC 6544 .
1156
+ Test pong frames. See 5.5.3. Pong in RFC 6455 .
1157
1157
1158
1158
"""
1159
1159
@@ -1298,7 +1298,7 @@ class FailTests(ProtocolTestCase):
1298
1298
"""
1299
1299
Test failing the connection.
1300
1300
1301
- See 7.1.7. Fail the WebSocket Connection in RFC 6544 .
1301
+ See 7.1.7. Fail the WebSocket Connection in RFC 6455 .
1302
1302
1303
1303
"""
1304
1304
@@ -1321,7 +1321,7 @@ class FragmentationTests(ProtocolTestCase):
1321
1321
"""
1322
1322
Test message fragmentation.
1323
1323
1324
- See 5.4. Fragmentation in RFC 6544 .
1324
+ See 5.4. Fragmentation in RFC 6455 .
1325
1325
1326
1326
"""
1327
1327
You can’t perform that action at this time.
0 commit comments