diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-02-24 23:55:03 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-08-19 00:30:43 +0200 |
commit | d87fefd1caa8dd8ffc4db607ce846a7bfa3c071e (patch) | |
tree | 2c9002939ef3c29e98c8f8a26b5c20c50ff7a950 /tunnel/src/main/proto | |
parent | e22cc0235da95caee124a4a9bf5b7ec26b2012e3 (diff) |
tunnel: download pac in java
Diffstat (limited to 'tunnel/src/main/proto')
-rw-r--r-- | tunnel/src/main/proto/libwg.proto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tunnel/src/main/proto/libwg.proto b/tunnel/src/main/proto/libwg.proto index da6f6da4..c87eb9ef 100644 --- a/tunnel/src/main/proto/libwg.proto +++ b/tunnel/src/main/proto/libwg.proto @@ -50,7 +50,10 @@ message VersionResponse { } message StartHttpProxyRequest { - string pacFileUrl = 1; + oneof pacFile { + string pacFileUrl = 1; + string pacFileContent = 2; + } } message StartHttpProxyResponse { |