Rename all the network behaviours to more basic names (#726)

* Rename FloodsubBehaviour to Floodsub

* Rename Ping behaviours

* Rename identify
This commit is contained in:
Pierre Krieger
2018-12-05 17:04:25 +01:00
committed by GitHub
parent 4140047f34
commit 9102266d70
13 changed files with 50 additions and 54 deletions

View File

@ -94,14 +94,12 @@ extern crate tokio_io;
extern crate tokio_timer;
extern crate void;
pub use self::dial_handler::PeriodicPingHandler;
pub use self::dial_layer::PeriodicPingBehaviour;
pub use self::listen_handler::PingListenHandler;
pub use self::listen_layer::PingListenBehaviour;
pub use self::dial_layer::PeriodicPing;
pub use self::listen_layer::PingListen;
pub mod dial_handler;
pub mod listen_handler;
pub mod protocol;
mod dial_handler;
mod dial_layer;
mod listen_handler;
mod listen_layer;