* Add checks for additional reserved ip addresses 100.64.0.0/10 and 240.0.0.0/4 are both reserved but not currently filtered. * Add check for special purpose addresses 192.0.0.0/24 - Used for the IANA IPv4 Special Purpose Address Registry * Refactor ip_utils (#5872) * Add checks for all ipv4 special use addresses * Add comprehensive ipv4 test cases * Refactor Ipv6 address checks (#5872) * Refactor AllowIP (#5872) * Add IpFilter struct to wrap predefined filter (AllowIP) with custom allow/block filters. * Refactor parsing of --allow-ips to handle custom filters. * Move AllowIP/IpFilter from ethsync to ethcore-network where they are used. * Revert Cargo.lock * Tests for custom ip filters (#5872) * Add "none" as a valid argument for --allow-ips to allow narrow custom ranges, eg.: --allow-ips="none 10.0.0.0/8" * Add tests for parsing filter arguments and node endpoints. * Add ipnetwork crate to dev dependencies for testing. * Add ipv6 filter tests (#5872) * Revert parity-ui-precompiled to master * Fix minor detail in usage.txt (#5872) * Spaces to tabs * Rename IpFilter::new() to ::default() * Small readability improvements * Test (#5872) * Revert "Test (#5872)" This reverts commit 7a8906430a6dad633fe29df3dca57f1630851fa9.
86 lines
2.3 KiB
Rust
86 lines
2.3 KiB
Rust
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// 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.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// 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
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#![warn(missing_docs)]
|
|
#![cfg_attr(feature="dev", feature(plugin))]
|
|
#![cfg_attr(feature="dev", plugin(clippy))]
|
|
// Keeps consistency (all lines with `.clone()`) and helpful when changing ref to non-ref.
|
|
#![cfg_attr(feature="dev", allow(clone_on_copy))]
|
|
// In most cases it expresses function flow better
|
|
#![cfg_attr(feature="dev", allow(if_not_else))]
|
|
|
|
//! Blockchain sync module
|
|
//! Implements ethereum protocol version 63 as specified here:
|
|
//! https://github.com/ethereum/wiki/wiki/Ethereum-Wire-Protocol
|
|
//!
|
|
|
|
extern crate ethcore_network as network;
|
|
extern crate ethcore_io as io;
|
|
extern crate ethcore;
|
|
extern crate env_logger;
|
|
extern crate time;
|
|
extern crate rand;
|
|
extern crate semver;
|
|
extern crate parking_lot;
|
|
extern crate smallvec;
|
|
extern crate rlp;
|
|
extern crate ipnetwork;
|
|
|
|
extern crate ethcore_light as light;
|
|
|
|
#[cfg(test)] extern crate ethcore_devtools as devtools;
|
|
#[cfg(test)] extern crate ethkey;
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[macro_use]
|
|
extern crate ethcore_util as util;
|
|
#[macro_use]
|
|
extern crate heapsize;
|
|
#[macro_use]
|
|
extern crate ethcore_ipc as ipc;
|
|
|
|
mod chain;
|
|
mod blocks;
|
|
mod block_sync;
|
|
mod sync_io;
|
|
mod snapshot;
|
|
mod transactions_stats;
|
|
|
|
pub mod light_sync;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[cfg(feature = "ipc")]
|
|
mod api {
|
|
#![allow(dead_code, unused_assignments, unused_variables, missing_docs)] // codegen issues
|
|
include!(concat!(env!("OUT_DIR"), "/api.rs"));
|
|
}
|
|
|
|
#[cfg(not(feature = "ipc"))]
|
|
mod api;
|
|
|
|
pub use api::*;
|
|
pub use chain::{SyncStatus, SyncState};
|
|
pub use network::{is_valid_node_url, NonReservedPeerMode, NetworkError};
|
|
|
|
/// IPC interfaces
|
|
#[cfg(feature="ipc")]
|
|
pub mod remote {
|
|
pub use api::{SyncClient, NetworkManagerClient};
|
|
}
|