Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cats-standard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CATS
cats-standard
Commits
981bfb6d
Commit
981bfb6d
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
felinet proto fix
parent
da953ab6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
proto/felinet.proto
+7
-3
7 additions, 3 deletions
proto/felinet.proto
standard.pdf
+0
-0
0 additions, 0 deletions
standard.pdf
with
7 additions
and
3 deletions
proto/felinet.proto
+
7
−
3
View file @
981bfb6d
...
...
@@ -3,8 +3,8 @@ package felinet;
service
Handler
{
rpc
Login
(
LoginRequest
)
returns
(
LoginResponse
);
rpc
PushPackets
(
stream
Packet
)
returns
(
PushPacketResponse
);
rpc
GetPackets
(
PacketFilter
)
returns
(
stream
Packet
);
rpc
PushPackets
(
stream
Packet
In
)
returns
(
PushPacketResponse
);
rpc
GetPackets
(
PacketFilter
)
returns
(
stream
Packet
Out
);
rpc
Ping
(
PingRequest
)
returns
(
PingResponse
);
}
...
...
@@ -22,11 +22,15 @@ message LoginResponse {
message
PushPacketResponse
{}
message
Packet
{
message
Packet
In
{
bytes
raw
=
1
;
bytes
uuid
=
2
;
}
message
PacketOut
{
bytes
raw
=
1
;
}
message
PacketFilter
{
oneof
filter
{
uint32
all
=
1
;
...
...
This diff is collapsed.
Click to expand it.
standard.pdf
+
0
−
0
View file @
981bfb6d
No preview for this file type
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment