diff options
author | Werner Koch <[email protected]> | 2018-03-23 07:14:58 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-03-23 07:37:14 +0000 |
commit | 05c55ee260edc07cd19da56dfd00347bfe3f529c (patch) | |
tree | 058fda975959ac7bd01f1707d0be6c0ce1af6af0 /doc/gpg-agent.texi | |
parent | build: Fix the manual source field. (diff) | |
download | gnupg-05c55ee260edc07cd19da56dfd00347bfe3f529c.tar.gz gnupg-05c55ee260edc07cd19da56dfd00347bfe3f529c.zip |
agent: New OPTION pretend-request-origin
* common/shareddefs.h (request_origin_t): New.
* common/agent-opt.c (parse_request_origin): New.
(str_request_origin): New.
* agent/command.c (option_handler): Implement new option.
--
This allows to pretend that a request originated from the extra or
browser socket.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'doc/gpg-agent.texi')
-rw-r--r-- | doc/gpg-agent.texi | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/gpg-agent.texi b/doc/gpg-agent.texi index 4781bbdca..bcce03329 100644 --- a/doc/gpg-agent.texi +++ b/doc/gpg-agent.texi @@ -1581,6 +1581,27 @@ option is valid for the entire session or until reset to 0. This option is useful if the key is later used on boxes which are either much slower or faster than the actual box. +@item pretend-request-origin +This option switches the connection into a restricted mode which +handles all further commands in the same way as they would be handled +when originating from the extra or browser socket. Note that this +option is not available in the restricted mode. Valid values for this +option are: + + @table @code + @item none + @itemx local + This is a NOP and leaves the connection in the standard way. + + @item remote + Pretend to come from a remote origin in the same way as connections + from the @option{--extra-socket}. + + @item browser + Pretend to come from a local web browser in the same way as connections + from the @option{--browser-socket}. + @end table + @end table |