diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-02-24 23:55:03 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-03-23 22:55:18 +0100 |
commit | d6153ccbff8c1fa8d3648daa16ac26e7c37e4d9d (patch) | |
tree | 75124b9fd90cf6ab7aa7e1583d6cc6e86d7f4f09 /tunnel/src/main/proto/libwg.proto | |
parent | 045e875d9c49334a2cf48f01116edac8bfcfb9b1 (diff) |
WIP: experimental pac content
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 ab6b2659..349166ca 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 { |