2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2018-03-05 11:56:35 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2018-03-05 11:56:35 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2018-03-05 11:56:35 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
//! Network and general IO module.
|
|
|
|
//!
|
|
|
|
//! Example usage for creating a network service and adding an IO handler:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! extern crate ethcore_network as net;
|
|
|
|
//! extern crate ethcore_network_devp2p as devp2p;
|
|
|
|
//! use net::*;
|
|
|
|
//! use devp2p::NetworkService;
|
|
|
|
//! use std::sync::Arc;
|
2018-04-14 21:35:58 +02:00
|
|
|
//! use std::time::Duration;
|
2018-03-05 11:56:35 +01:00
|
|
|
//!
|
|
|
|
//! struct MyHandler;
|
|
|
|
//!
|
|
|
|
//! impl NetworkProtocolHandler for MyHandler {
|
2018-06-02 11:05:11 +02:00
|
|
|
//! fn initialize(&self, io: &NetworkContext) {
|
2018-04-14 21:35:58 +02:00
|
|
|
//! io.register_timer(0, Duration::from_secs(1));
|
2018-03-05 11:56:35 +01:00
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn read(&self, io: &NetworkContext, peer: &PeerId, packet_id: u8, data: &[u8]) {
|
|
|
|
//! println!("Received {} ({} bytes) from {}", packet_id, data.len(), peer);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn connected(&self, io: &NetworkContext, peer: &PeerId) {
|
|
|
|
//! println!("Connected {}", peer);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn disconnected(&self, io: &NetworkContext, peer: &PeerId) {
|
|
|
|
//! println!("Disconnected {}", peer);
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main () {
|
|
|
|
//! let mut service = NetworkService::new(NetworkConfiguration::new_local(), None).expect("Error creating network service");
|
|
|
|
//! service.start().expect("Error starting service");
|
2018-05-14 10:09:05 +02:00
|
|
|
//! service.register_protocol(Arc::new(MyHandler), *b"myp", &[(1u8, 1u8)]);
|
2018-03-05 11:56:35 +01:00
|
|
|
//!
|
|
|
|
//! // Wait for quit condition
|
|
|
|
//! // ...
|
|
|
|
//! // Drop the service
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
//TODO: use Poll from mio
|
|
|
|
#![allow(deprecated)]
|
|
|
|
|
2019-06-03 19:21:29 +02:00
|
|
|
//TODO: remove this
|
|
|
|
extern crate ansi_term;
|
|
|
|
#[cfg(test)] #[macro_use]
|
|
|
|
extern crate assert_matches;
|
|
|
|
extern crate bytes;
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate env_logger;
|
2018-03-05 11:56:35 +01:00
|
|
|
extern crate ethcore_io as io;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate ethcore_network as network;
|
2018-03-05 11:56:35 +01:00
|
|
|
extern crate ethereum_types;
|
|
|
|
extern crate ethkey;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate igd;
|
2018-03-05 11:56:35 +01:00
|
|
|
extern crate ipnetwork;
|
|
|
|
extern crate keccak_hash as hash;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate libc;
|
2018-03-05 11:56:35 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate lru_cache;
|
|
|
|
extern crate mio;
|
|
|
|
extern crate parity_bytes;
|
|
|
|
extern crate parity_crypto as crypto;
|
|
|
|
extern crate parity_path;
|
|
|
|
extern crate parity_snappy as snappy;
|
|
|
|
extern crate parking_lot;
|
|
|
|
extern crate rand;
|
|
|
|
extern crate rlp;
|
|
|
|
extern crate rustc_hex;
|
|
|
|
extern crate serde;
|
2018-03-05 11:56:35 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate serde_json;
|
|
|
|
extern crate slab;
|
2018-03-05 11:56:35 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate tempdir;
|
2019-06-03 19:21:29 +02:00
|
|
|
extern crate tiny_keccak;
|
|
|
|
|
|
|
|
pub use host::NetworkContext;
|
|
|
|
pub use io::TimerToken;
|
|
|
|
pub use node_table::{MAX_NODES_IN_TABLE, NodeId, validate_node_url};
|
|
|
|
pub use service::NetworkService;
|
2018-03-05 11:56:35 +01:00
|
|
|
|
|
|
|
mod host;
|
|
|
|
mod connection;
|
|
|
|
mod handshake;
|
|
|
|
mod session;
|
|
|
|
mod discovery;
|
|
|
|
mod service;
|
|
|
|
mod node_table;
|
|
|
|
mod ip_utils;
|
|
|
|
|
|
|
|
const PROTOCOL_VERSION: u32 = 5;
|