Initial client

This commit is contained in:
2024-03-03 00:46:34 -05:00
parent 73d8b6716b
commit 2bdf450d65
3 changed files with 38 additions and 10 deletions

View File

@@ -21,3 +21,11 @@ struct guestfs_inpsect_command {
char name[];
};
static char *endpoint() {
// TODO: This should be based on GUESTFS_INSPECT_ENDPOINT, or XDG_RUNTIME_DIR if the former is not set, and default to a sensible path if neither are set.
const char* ep = "ipc:///tmp/guestfs-inspect.sock";
char *res = malloc(strlen(ep) + 1);
strcpy(res, ep);
return res;
}