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-28 23:12:31 +0200 |
commit | 13fcd1fa8964cbf9dca49653cf9af7e8fa6d876d (patch) | |
tree | 5465a9dae6ee2ab44ea164e4a28751b019043ba3 /tunnel/src/main/proto | |
parent | e56b631752e5fc0e77e8cb264161c9c1c040fd49 (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 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 { |