summaryrefslogtreecommitdiff
path: root/src/vyconf_client.mli
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-04-16 14:51:36 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-05-12 11:26:41 -0500
commitc6a09cc9fce42323d86d2f4e161a894cdc970a24 (patch)
tree0d82f98183bbf16d6a4a6d5c5c4d32c29eb3f24f /src/vyconf_client.mli
parentc508c8c66c76488337745cf151d9570c42e38a3b (diff)
downloadvyconf-c6a09cc9fce42323d86d2f4e161a894cdc970a24.tar.gz
vyconf-c6a09cc9fce42323d86d2f4e161a894cdc970a24.zip
T7363: track process id in session data
In practice, this may be passed in the request as the ppid, as needed for CLI applications to coordinate with the ambient config session. For other uses, the client pid will suffice.
Diffstat (limited to 'src/vyconf_client.mli')
-rw-r--r--src/vyconf_client.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vyconf_client.mli b/src/vyconf_client.mli
index 9c25c60..39e955b 100644
--- a/src/vyconf_client.mli
+++ b/src/vyconf_client.mli
@@ -8,7 +8,7 @@ val shutdown : t -> t Lwt.t
val prompt : t -> Vyconf_connect.Vyconf_pbt.response Lwt.t
-val setup_session : ?on_behalf_of:(int option) -> t -> string -> (t, string) result Lwt.t
+val setup_session : ?on_behalf_of:(int option) -> t -> string -> int32 -> (t, string) result Lwt.t
val teardown_session : ?on_behalf_of:(int option) -> t -> (string, string) result Lwt.t