diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-12-24 23:52:18 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-12-24 23:52:18 +0100 |
commit | 78440eab81959ec7a95effd579fd87b7c56dbe3d (patch) | |
tree | 23a962d528fa2ac50b7c4fba92c36a63df25b479 /src/types.h | |
parent | eaac49427339a365aac2d3505f567572cfbdbb96 (diff) | |
download | fastd-78440eab81959ec7a95effd579fd87b7c56dbe3d.tar fastd-78440eab81959ec7a95effd579fd87b7c56dbe3d.zip |
Add user switching and capability support
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h index cda16ec..a4da2b8 100644 --- a/src/types.h +++ b/src/types.h @@ -41,6 +41,12 @@ typedef enum fastd_mode { MODE_TUN, } fastd_mode_t; +typedef enum fastd_drop_caps { + DROP_CAPS_OFF, + DROP_CAPS_ON, + DROP_CAPS_EARLY, +} fastd_drop_caps_t; + typedef struct fastd_buffer fastd_buffer_t; typedef union fastd_peer_address fastd_peer_address_t; |