Skip to content

Commit

Permalink
Add dbus proxy
Browse files Browse the repository at this point in the history
  - update flake
  - add dbus proxy module, using xdg-dbus-proxy
  - add socket proxy as agent module
  - add dbus test across various setups
  - re-work submodules and parameter parsing
  - smaller fixes

Signed-off-by: Manuel Bluhm <[email protected]>
  • Loading branch information
mbssrc committed Nov 8, 2024
1 parent f48fa34 commit a74f4cf
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 a74f4cf

Please sign in to comment.