2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-04-21 19:19:42 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-04-21 19:19:42 +02: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,
|
2016-04-21 19:19:42 +02: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-06-04 10:19:50 +02:00
|
|
|
|
2016-04-21 19:19:42 +02:00
|
|
|
//! Structure to hold network settings configured from CLI
|
|
|
|
|
|
|
|
/// Networking & RPC settings
|
2016-07-25 16:09:47 +02:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
2016-04-21 19:19:42 +02:00
|
|
|
pub struct NetworkSettings {
|
|
|
|
/// Node name
|
|
|
|
pub name: String,
|
|
|
|
/// Name of the chain we are connected to
|
|
|
|
pub chain: String,
|
2018-11-07 09:30:34 +01:00
|
|
|
/// Is development chain
|
|
|
|
pub is_dev_chain: bool,
|
2016-04-21 19:19:42 +02:00
|
|
|
/// Networking port
|
|
|
|
pub network_port: u16,
|
|
|
|
/// Is JSON-RPC server enabled?
|
|
|
|
pub rpc_enabled: bool,
|
|
|
|
/// Interface that JSON-RPC listens on
|
|
|
|
pub rpc_interface: String,
|
|
|
|
/// Port for JSON-RPC server
|
|
|
|
pub rpc_port: u16,
|
|
|
|
}
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
impl Default for NetworkSettings {
|
|
|
|
fn default() -> Self {
|
|
|
|
NetworkSettings {
|
|
|
|
name: "".into(),
|
2017-03-13 12:10:53 +01:00
|
|
|
chain: "foundation".into(),
|
2018-11-07 09:30:34 +01:00
|
|
|
is_dev_chain: false,
|
2016-07-25 16:09:47 +02:00
|
|
|
network_port: 30303,
|
|
|
|
rpc_enabled: true,
|
2017-05-23 12:24:32 +02:00
|
|
|
rpc_interface: "127.0.0.1".into(),
|
2016-07-25 16:09:47 +02:00
|
|
|
rpc_port: 8545
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|