Skip to content

Commit

Permalink
proto/stream needed a test and some fixes, fixed uds uid/gid and perm…
Browse files Browse the repository at this point in the history
… testing in client
  • Loading branch information
johnsiilver committed Jan 5, 2024
1 parent 94f6c5f commit eba8db5
Show file tree
Hide file tree
Showing 6 changed files with 1,413 additions and 26 deletions.
238 changes: 238 additions & 0 deletions ipc/uds/highlevel/proto/stream/internal/proto/stream.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions ipc/uds/highlevel/proto/stream/internal/proto/stream.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
syntax = "proto3";

option go_package = "github.com/johnsiilver/golib/ipc/uds/highlevel/proto/stream/internal/proto;msg";

// Request a quote from the server.
message MsgIn {
int32 id = 1;
bytes data = 2;
}

// Response for a quote.
message MsgOut {
int32 id = 1;
bytes data = 2;
}
Loading

0 comments on commit eba8db5

Please sign in to comment.