diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-02-24 23:55:03 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-04-03 22:23:25 +0200 |
commit | 7436674ca79685df3269d49576e34af3344d5438 (patch) | |
tree | c995b246d3307aac187a43649e597f861b1505ab /tunnel/src/main/proto/libwg.proto | |
parent | 64c183d14d5055423525b873c391d343e8a52272 (diff) |
tunnel: download pac in java
Diffstat (limited to 'tunnel/src/main/proto/libwg.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 90c4f46a..4fa4468b 100644 --- a/tunnel/src/main/proto/libwg.proto +++ b/tunnel/src/main/proto/libwg.proto @@ -56,7 +56,10 @@ message VersionResponse { } message StartHttpProxyRequest { - string pacFileUrl = 1; + oneof pacFile { + string pacFileUrl = 1; + string pacFileContent = 2; + } } message StartHttpProxyResponse { |