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 6, 2024
1 parent 6ce8c71 commit 72f4f89
Show file tree
Hide file tree
Showing 23 changed files with 2,076 additions and 574 deletions.
228 changes: 228 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.

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

message Empty {}

message SyncData {
uint32 Status = 1;
}

message SocketDataStream {
bytes Data = 1;
}

service SocketStream {
rpc Sync(SyncData) returns (SyncData) {}
rpc ReceiveData(stream SocketDataStream) returns (Empty) {}
}

Loading

0 comments on commit 72f4f89

Please sign in to comment.