@libp2p/webrtc 1.1.11 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.min.js +21 -17
- package/dist/src/maconn.d.ts +9 -0
- package/dist/src/maconn.d.ts.map +1 -1
- package/dist/src/maconn.js +10 -0
- package/dist/src/maconn.js.map +1 -1
- package/dist/src/muxer.d.ts +12 -2
- package/dist/src/muxer.d.ts.map +1 -1
- package/dist/src/muxer.js +16 -4
- package/dist/src/muxer.js.map +1 -1
- package/dist/src/peer_transport/handler.d.ts +10 -2
- package/dist/src/peer_transport/handler.d.ts.map +1 -1
- package/dist/src/peer_transport/handler.js +14 -2
- package/dist/src/peer_transport/handler.js.map +1 -1
- package/dist/src/peer_transport/listener.d.ts +6 -7
- package/dist/src/peer_transport/listener.d.ts.map +1 -1
- package/dist/src/peer_transport/listener.js +26 -24
- package/dist/src/peer_transport/listener.js.map +1 -1
- package/dist/src/peer_transport/transport.d.ts +4 -6
- package/dist/src/peer_transport/transport.d.ts.map +1 -1
- package/dist/src/peer_transport/transport.js +21 -20
- package/dist/src/peer_transport/transport.js.map +1 -1
- package/dist/src/peer_transport/util.js +1 -1
- package/dist/src/peer_transport/util.js.map +1 -1
- package/dist/src/stream.js +1 -1
- package/dist/src/stream.js.map +1 -1
- package/dist/src/transport.d.ts +6 -3
- package/dist/src/transport.d.ts.map +1 -1
- package/dist/src/transport.js +22 -12
- package/dist/src/transport.js.map +1 -1
- package/package.json +15 -15
- package/src/maconn.ts +18 -1
- package/src/muxer.ts +23 -4
- package/src/peer_transport/handler.ts +23 -5
- package/src/peer_transport/listener.ts +39 -28
- package/src/peer_transport/transport.ts +29 -24
- package/src/peer_transport/util.ts +1 -1
- package/src/stream.ts +1 -1
- package/src/transport.ts +29 -13
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](http://libp2p.io/)
|
|
4
4
|
[](https://discuss.libp2p.io)
|
|
5
5
|
[](https://codecov.io/gh/libp2p/js-libp2p-webrtc)
|
|
6
|
-
[](https://github.com/libp2p/js-libp2p-webrtc/actions/workflows/js-test-and-release.yml?query=branch%3Amain)
|
|
7
7
|
|
|
8
8
|
> A libp2p transport using WebRTC connections
|
|
9
9
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
- [Clean](#clean)
|
|
25
25
|
- [Check Dependencies](#check-dependencies)
|
|
26
26
|
- [License](#license)
|
|
27
|
-
- [
|
|
27
|
+
- [Contribution](#contribution)
|
|
28
28
|
|
|
29
29
|
## Install
|
|
30
30
|
|
|
@@ -178,6 +178,6 @@ Licensed under either of
|
|
|
178
178
|
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
|
179
179
|
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
|
180
180
|
|
|
181
|
-
##
|
|
181
|
+
## Contribution
|
|
182
182
|
|
|
183
183
|
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
|