1CAPNG_NAME_TO_CAPABILITY(3) Libcap-ng API CAPNG_NAME_TO_CAPABILITY(3)
2
3
4
6 capng_name_to_capability - convert capability text to integer
7
9 #include <cap-ng.h>
10
11 int capng_name_to_capability(const char *name);
12
13
15 capng_name_to_capability will take the string being passed and look it
16 up to see what its integer value would be. The string being input is
17 the same name as the define in linux/capabiliy.h with the CAP_ prefix
18 removed. The string case does not matter. The integer that is output is
19 the same as the define would be from linux/capabiliy.h. This is useful
20 for taking string input and converting to something that can be used
21 with capng_update.
22
23
25 This returns a negative number on failure and the correct define other‐
26 wise.
27
28
30 capng_capability_to_name(3), capabilities(7)
31
32
34 Steve Grubb
35
36
37
38Red Hat June 2009 CAPNG_NAME_TO_CAPABILITY(3)