blob: 74c75117f08c0c055476a0c3579d0426481e4490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <stdbool.h>
#include "sd-bus.h"
#include "macro.h"
typedef struct SocketServicePair {
char **exec_start_pre;
char **exec_start;
char **exec_stop_post;
char *unit_name_prefix;
char *runtime_directory;
char *listen_address;
int socket_type;
} SocketServicePair;
void socket_service_pair_done(SocketServicePair *p);
int start_transient_scope(sd_bus *bus, const char *machine_name, bool allow_pidfd, char **ret_scope);
int start_socket_service_pair(sd_bus *bus, const char *scope, SocketServicePair *p);
|