Skip to content

Commit

Permalink
Merge pull request tiiuae#26 from mbssrc/socket-proxy
Browse files Browse the repository at this point in the history
Add dbus proxy
  • Loading branch information
mbssrc authored Nov 8, 2024
2 parents f48fa34 + a74f4cf commit 995738c
Show file tree
Hide file tree
Showing 25 changed files with 1,984 additions and 579 deletions.
136 changes: 136 additions & 0 deletions api/socket/socket.pb.go

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

14 changes: 14 additions & 0 deletions api/socket/socket.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright 2024 TII (SSRC) and the Ghaf contributors
// SPDX-License-Identifier: Apache-2.0
syntax = "proto3";
option go_package = "./socketproxy";
package socketproxy;

message BytePacket {
bytes Data = 1;
}

service SocketStream {
rpc TransferData(stream BytePacket) returns (stream BytePacket) {}
}

144 changes: 144 additions & 0 deletions api/socket/socket_grpc.pb.go

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

41 changes: 18 additions & 23 deletions flake.lock

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

Loading

0 comments on commit 995738c

Please sign in to comment.