diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2017-12-19 16:13:35 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2017-12-19 16:13:35 +0100 |
commit | 252ab35c2e9944d87e750afc3852a487f596cbbd (patch) | |
tree | 8bf15760e3ef09f0b645c4cf4577570018e8bbff /src/options.h | |
parent | a0f97ecfd138d12fcac3177ea1ce9f15df0f7fd4 (diff) |
ptunnel-ng:
* optional feature disabled warning
* SeLinux enabled flag
* cosmetics
# Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen,
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/options.h b/src/options.h index 8678d60..9029b6a 100644 --- a/src/options.h +++ b/src/options.h @@ -51,8 +51,6 @@ struct options { int udp; /** unpriviledged mode */ int unprivileged; - /** use base64 encoded packets */ - int base64; #ifndef WIN32 /** run as daemon if non zero value */ @@ -72,6 +70,9 @@ struct options { #endif #ifdef HAVE_SELINUX + /** Non zero value if uer wants SeLinux */ + int selinux; + /** SeLinux context name */ char *selinux_context; #endif }; |