diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-16 16:25:42 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-16 16:27:24 +0200 |
commit | df1f0afe0c0d044a42ee726fa03730291d7082ee (patch) | |
tree | ec9aba0611608c2666aabac5ebc1b41b1c2508bd /src/execute.h | |
parent | 0213c3f8102bdc934c629d11a44ca0b408762287 (diff) |
tcpwrap: execute tcpwrap check in forked client, to avoid blocking name lookups in main systemd process
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/execute.h b/src/execute.h index 4585fe43a7..1adf41ea67 100644 --- a/src/execute.h +++ b/src/execute.h @@ -104,6 +104,8 @@ struct ExecContext { char *syslog_identifier; bool syslog_no_prefix; + char *tcpwrap_name; + char *tty_path; /* Since resolving these names might might involve socket @@ -179,7 +181,8 @@ typedef enum ExitStatus { EXIT_CGROUP, EXIT_SETSID, /* 220 */ EXIT_CONFIRM, - EXIT_STDERR + EXIT_STDERR, + EXIT_TCPWRAP } ExitStatus; |