summaryrefslogtreecommitdiffhomepage
path: root/tunnel/src/main/proto/libwg.proto
diff options
context:
space:
mode:
authorMikael Magnusson <mikma@users.sourceforge.net>2023-02-11 22:18:40 +0100
committerMikael Magnusson <mikma@users.sourceforge.net>2023-03-27 00:36:40 +0200
commitb5ad0b1551498cff45ba871f8e7bdb50e303fd19 (patch)
tree8339fadcb0cd1df3669442d31fcc58522021c4d3 /tunnel/src/main/proto/libwg.proto
parent4a6e150ac25c5beda947f62665a30a03e078e26c (diff)
WIP: dhcp
Diffstat (limited to 'tunnel/src/main/proto/libwg.proto')
-rw-r--r--tunnel/src/main/proto/libwg.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/tunnel/src/main/proto/libwg.proto b/tunnel/src/main/proto/libwg.proto
index e633ea46..591e897f 100644
--- a/tunnel/src/main/proto/libwg.proto
+++ b/tunnel/src/main/proto/libwg.proto
@@ -15,6 +15,7 @@ service Libwg {
rpc StopHttpProxy(StopHttpProxyRequest) returns (StopHttpProxyResponse);
rpc Reverse(stream ReverseRequest) returns (stream ReverseResponse);
rpc IpcSet(IpcSetRequest) returns (IpcSetResponse);
+ rpc Dhcp(DhcpRequest) returns (DhcpResponse);
}
message TunnelHandle { int32 handle = 1; }
@@ -101,3 +102,10 @@ message IpcSetRequest {
message IpcSetResponse {
Error error = 1;
}
+
+message DhcpRequest {
+}
+
+message DhcpResponse {
+ Error error = 1;
+}