File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed
Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.5
2+
3+ * Increase the SDK version constraint to ` <2.0.0-dev.infinity ` .
4+
15## 1.0.4
26
37* Support ` crypto ` 2.0.0.
Original file line number Diff line number Diff line change 1+ analyzer :
2+ strong-mode : true
Original file line number Diff line number Diff line change 22// for details. All rights reserved. Use of this source code is governed by a
33// BSD-style license that can be found in the LICENSE file.
44
5+ library web_socket_channel.html;
6+
57import 'dart:async' ;
68import 'dart:html' ;
79import 'dart:typed_data' ;
Original file line number Diff line number Diff line change 22// for details. All rights reserved. Use of this source code is governed by a
33// BSD-style license that can be found in the LICENSE file.
44
5+ library web_socket_channel.io;
6+
57import 'dart:async' ;
68import 'dart:io' ;
79
Original file line number Diff line number Diff line change @@ -57,18 +57,6 @@ class _WebSocketOpcode {
5757 static const int RESERVED_F = 15 ;
5858}
5959
60- /**
61- * Stores the header and integer value derived from negotiation of
62- * client_max_window_bits and server_max_window_bits. headerValue will be
63- * set in the Websocket response headers.
64- */
65- class _CompressionMaxWindowBits {
66- String headerValue;
67- int maxWindowBits;
68- _CompressionMaxWindowBits ([this .headerValue, this .maxWindowBits]);
69- String toString () => headerValue;
70- }
71-
7260/**
7361 * The web socket protocol transformer handles the protocol byte stream
7462 * which is supplied through the [:handleData:] . As the protocol is processed,
Original file line number Diff line number Diff line change 1616/// channel.close(status.goingAway);
1717/// }
1818/// ```
19+ library web_socket_channel.status;
20+
1921import 'dart:core' ;
2022
2123/// The purpose for which the connection was established has been fulfilled.
Original file line number Diff line number Diff line change 11name : web_socket_channel
2- version : 1.0.5-dev
2+ version : 1.0.5
33description : StreamChannel wrappers for WebSockets.
44author :
Dart Team <[email protected] > 55homepage : https://github.com/dart-lang/web_socket_channel
66
77environment :
8- sdk : ' >=1.13.0 <2.0.0'
8+ sdk : ' >=1.13.0 <2.0.0-dev.infinity '
99
1010dependencies :
1111 async : ' ^1.3.0'
You can’t perform that action at this time.
0 commit comments