-
Notifications
You must be signed in to change notification settings - Fork 999
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
707 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "libp2p-websocket" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
|
||
[dependencies] | ||
libp2p-swarm = { path = "../libp2p-swarm" } | ||
futures = "0.1" | ||
multiaddr = "0.2.0" | ||
rw-stream-sink = { path = "../rw-stream-sink" } | ||
tokio-io = "0.1" | ||
|
||
[target.'cfg(not(target_os = "emscripten"))'.dependencies] | ||
websocket = { version = "0.20.2", default-features = false, features = ["async"] } | ||
|
||
[target.'cfg(target_os = "emscripten")'.dependencies] | ||
stdweb = { version = "0.1.3", default-features = false } | ||
|
||
[target.'cfg(not(target_os = "emscripten"))'.dev-dependencies] | ||
libp2p-tcp-transport = { path = "../libp2p-tcp-transport" } | ||
tokio-core = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
Implementation of the libp2p `Transport` trait for Websockets. | ||
|
||
See the documentation of `swarm` and of libp2p in general to learn how to use the `Transport` | ||
trait. | ||
|
||
This library is used in a different way depending on whether you are compiling for emscripten | ||
or for a different operating system. | ||
|
||
# Emscripten | ||
|
||
On emscripten, you can create a `WsConfig` object with `WsConfig::new()`. It can then be used | ||
as a transport. | ||
|
||
Listening on a websockets multiaddress isn't supported on emscripten. Dialing a multiaddress | ||
which uses `ws` on top of TCP/IP will automatically use the `XMLHttpRequest` Javascript object. | ||
|
||
```rust | ||
use libp2p_websocket::WsConfig; | ||
|
||
let ws_config = WsConfig::new(); | ||
// let _ = ws_config.dial(Multiaddr::new("/ip4/40.41.42.43/tcp/12345/ws").unwrap()); | ||
``` | ||
|
||
# Other operating systems | ||
|
||
On other operating systems, this library doesn't open any socket by itself. Instead it must be | ||
plugged on top of another implementation of `Transport` such as TCP/IP. | ||
|
||
This underlying transport must be passed to the `WsConfig::new()` function. | ||
|
||
```rust | ||
extern crate libp2p_tcp_transport; | ||
extern crate libp2p_websocket; | ||
extern crate tokio_core; | ||
|
||
use libp2p_websocket::WsConfig; | ||
use libp2p_tcp_transport::TcpConfig; | ||
use tokio_core::reactor::Core; | ||
|
||
let core = Core::new().unwrap(); | ||
let ws_config = WsConfig::new(TcpConfig::new(core.handle())); | ||
// let _ = ws_config.dial(Multiaddr::new("/ip4/40.41.42.43/tcp/12345/ws").unwrap()); | ||
``` |
Oops, something went wrong.