-
Notifications
You must be signed in to change notification settings - Fork 1
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
13 changed files
with
270 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// This file is @generated by prost-build. | ||
/// A Kitsune2 space protocol message. | ||
/// | ||
/// There is only a single space-level message type. That is a notify | ||
/// between two agents at that space level. Making this a very simple message. | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct K2SpaceProto { | ||
/// The destination agent. | ||
#[prost(bytes = "bytes", tag = "1")] | ||
pub to_agent: ::prost::bytes::Bytes, | ||
/// The source agent. | ||
#[prost(bytes = "bytes", tag = "2")] | ||
pub from_agent: ::prost::bytes::Bytes, | ||
/// The payload or content of this message. | ||
#[prost(bytes = "bytes", tag = "3")] | ||
pub data: ::prost::bytes::Bytes, | ||
} |
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,18 @@ | ||
syntax = "proto3"; | ||
|
||
package kitsune2.space; | ||
|
||
// A Kitsune2 space protocol message. | ||
// | ||
// There is only a single space-level message type. That is a notify | ||
// between two agents at that space level. Making this a very simple message. | ||
message K2SpaceProto { | ||
// The destination agent. | ||
bytes to_agent = 1; | ||
|
||
// The source agent. | ||
bytes from_agent = 2; | ||
|
||
// The payload or content of this message. | ||
bytes data = 3; | ||
} |
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
Oops, something went wrong.