mirror of
https://github.com/rd235/cado
synced 2025-01-14 14:46:14 +01:00
16 lines
272 B
C
16 lines
272 B
C
#ifndef SET_AMBIENT_CAP_H
|
|
#define SET_AMBIENT_CAP_H
|
|
#include <stdint.h>
|
|
|
|
void set_ambient_cap(uint64_t capset);
|
|
|
|
void drop_ambient_cap(uint64_t capset);
|
|
|
|
int drop_all_ambient_cap(void);
|
|
|
|
void raise_cap_dac_read_search(void);
|
|
|
|
void lower_cap_dac_read_search(void);
|
|
|
|
#endif
|