diff options
author | Cristian Toader <cristian.matei.toader@gmail.com> | 2013-08-29 15:44:01 +0300 |
---|---|---|
committer | Cristian Toader <cristian.matei.toader@gmail.com> | 2013-08-29 15:44:01 +0300 |
commit | f93ba9a2ef182faf1d9faacf26012135eb999ccf (patch) | |
tree | 75ca8ec7bd49f4c49a628bc227e8325303d7808a | |
parent | d5f43b52546013e5fac26a1d08a9c21fb2be864a (diff) | |
download | tor-f93ba9a2ef182faf1d9faacf26012135eb999ccf.tar tor-f93ba9a2ef182faf1d9faacf26012135eb999ccf.tar.gz |
documentation update for _array functions
-rw-r--r-- | src/common/sandbox.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/common/sandbox.h b/src/common/sandbox.h index 2c0eb30b8..51449ca41 100644 --- a/src/common/sandbox.h +++ b/src/common/sandbox.h @@ -119,11 +119,10 @@ int sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file, /** Function used to add a series of open allowed filenames to a supplied * configuration. * @param cfg sandbox configuration. - * @param num number of files. * @param ... all future parameters are specified as pairs of <(char*), 1 / 0> * the char* specifies the path to the allowed file, 1 tells the function * that the char* needs to be free-ed, 0 means the pointer does not need to - * be free-ed. + * be free-ed; the final parameter needs to be <NULL, 0>. */ int sandbox_cfg_allow_open_filename_array(sandbox_cfg_t **cfg, ...); @@ -139,11 +138,10 @@ int sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file, /** Function used to add a series of openat allowed filenames to a supplied * configuration. * @param cfg sandbox configuration. - * @param num number of files. * @param ... all future parameters are specified as pairs of <(char*), 1 / 0> * the char* specifies the path to the allowed file, 1 tells the function * that the char* needs to be free-ed, 0 means the pointer does not need to - * be free-ed. + * be free-ed; the final parameter needs to be <NULL, 0>. */ int sandbox_cfg_allow_openat_filename_array(sandbox_cfg_t **cfg, ...); @@ -158,11 +156,10 @@ int sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, char *com); /** Function used to add a series of execve allowed filenames to a supplied * configuration. * @param cfg sandbox configuration. - * @param num number of files. * @param ... all future parameters are specified as pairs of <(char*), 1 / 0> * the char* specifies the path to the allowed file, 1 tells the function * that the char* needs to be free-ed, 0 means the pointer does not need to - * be free-ed. + * be free-ed; the final parameter needs to be <NULL, 0>. */ int sandbox_cfg_allow_execve_array(sandbox_cfg_t **cfg, ...); @@ -178,11 +175,10 @@ int sandbox_cfg_allow_stat64_filename(sandbox_cfg_t **cfg, char *file, /** Function used to add a series of stat64 allowed filenames to a supplied * configuration. * @param cfg sandbox configuration. - * @param num number of files. * @param ... all future parameters are specified as pairs of <(char*), 1 / 0> * the char* specifies the path to the allowed file, 1 tells the function * that the char* needs to be free-ed, 0 means the pointer does not need to - * be free-ed. + * be free-ed; the final parameter needs to be <NULL, 0>. */ int sandbox_cfg_allow_stat64_filename_array(sandbox_cfg_t **cfg, ...); |