diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-02-24 23:55:03 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-10-26 00:11:06 +0200 |
commit | 37796bef1cc835920e32cce0b8da3f4f89bcb442 (patch) | |
tree | d7476cc0021d0b414c7ee3f241ee7b79d55b96af /tunnel/src/main/proto/libwg.proto | |
parent | e29d2c1ae93d981fe52e2e723fa1ecb1230bac2e (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 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 { |