aboutsummaryrefslogtreecommitdiffstats
path: root/g13/runner.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-10-15 17:20:41 +0000
committerWerner Koch <[email protected]>2009-10-15 17:20:41 +0000
commit598bf9199e89a53bc0ffd2e32141a42d5ec85184 (patch)
tree0a5d888558adc8f13d873bbf93c639f5aaebb738 /g13/runner.h
parentmount does now work in server and standalone mode. (diff)
downloadgnupg-598bf9199e89a53bc0ffd2e32141a42d5ec85184.tar.gz
gnupg-598bf9199e89a53bc0ffd2e32141a42d5ec85184.zip
Reworked the server commands.
Track mounts. --create does now work as expected.
Diffstat (limited to 'g13/runner.h')
-rw-r--r--g13/runner.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/g13/runner.h b/g13/runner.h
index 88ebc7d2d..e68eca03a 100644
--- a/g13/runner.h
+++ b/g13/runner.h
@@ -40,6 +40,12 @@ gpg_error_t runner_new (runner_t *r_runner, const char *name);
/* Free a runner object. */
void runner_release (runner_t runner);
+/* Return the identifier of RUNNER. */
+unsigned int runner_get_rid (runner_t runner);
+
+/* Find a runner by its rid. */
+runner_t runner_find_by_rid (unsigned int rid);
+
/* Functions to set properties of the runner. */
void runner_set_fds (runner_t runner, int in_fd, int out_fd);