node: Add block command to control socket
modified crates/radicle-node/src/control.rs
@@ -170,6 +170,14 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/runtime/handle.rs
@@ -247,6 +247,12 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/test/handle.rs
@@ -18,6 +18,7 @@ pub struct Handle {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -85,6 +86,7 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -93,7 +95,14 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/service.rs
@@ -856,6 +856,16 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -1344,6 +1354,7 @@ where
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -2684,6 +2695,8 @@ pub enum DisconnectReason {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -2712,6 +2725,7 @@ impl fmt::Display for DisconnectReason {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/service/command.rs
@@ -99,6 +99,8 @@ pub enum Command {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -194,6 +196,7 @@ impl fmt::Debug for Command {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node.rs
@@ -907,6 +907,8 @@ pub trait Handle: Clone + Sync + Send {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -1191,6 +1193,13 @@ impl Handle for Node {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/command.rs
@@ -120,6 +120,10 @@ pub enum Command {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/policy/store.rs
@@ -119,14 +119,15 @@ impl Store<Write> {
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -248,6 +249,18 @@ impl<T> Store<T> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|