-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
72 additions
and
250 deletions.
There are no files selected for viewing
95 changes: 0 additions & 95 deletions
95
.../sandpolis-plugin-shell/agent/src/main/java/org/s7s/plugin/shell/agent/java/ShellExe.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
...gin-shell/agent/src/main/java/org/s7s/plugin/shell/agent/java/stream/ShellStreamSink.java
This file was deleted.
Oops, something went wrong.
66 changes: 0 additions & 66 deletions
66
...n-shell/agent/src/main/java/org/s7s/plugin/shell/agent/java/stream/ShellStreamSource.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
use std::net::SocketAddr; | ||
|
||
#[derive(Clone, Serialize, Deserialize)] | ||
pub struct TunnelStreamData { | ||
/// Instance hosting the listener | ||
pub listener_id: InstanceId, | ||
|
||
/// Socket to bind the listener to | ||
pub listener_addr: SocketAddr, | ||
|
||
pub repeater_iid: Vec<String>, | ||
|
||
pub terminator_iid: String, | ||
|
||
pub target_addr: SocketAddr, | ||
|
||
pub target_protocol: String, | ||
} | ||
|
||
/// Raw data flowing through a tunnel | ||
#[derive(Serialize, Deserialize, StreamEvent)] | ||
pub struct TunnelStreamEvent(Vec<u8>); |
Oops, something went wrong.