diff options
author | mturk <mturk@13f79535-47bb-0310-9956-ffa450edef68> | 2005-01-16 07:30:46 +0000 |
---|---|---|
committer | mturk <mturk@13f79535-47bb-0310-9956-ffa450edef68> | 2005-01-16 07:30:46 +0000 |
commit | 6489c816b5a63e87891fc62834802468056858d6 (patch) | |
tree | 0a9b23290364285a9658c3df99c4bfa3d929a60e /threadproc/beos | |
parent | dae8ad5c39d3a9b323a4952b02f1175b5dd25287 (diff) | |
download | libapr-6489c816b5a63e87891fc62834802468056858d6.tar.gz |
Added apr_procattr_user_set and apr_procattr_group_set to allow setting uid/gid for newly created processes using apr_proc_create.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@125349 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r-- | threadproc/beos/proc.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/threadproc/beos/proc.c b/threadproc/beos/proc.c index 71dd5a88f..9f1dd4cbb 100644 --- a/threadproc/beos/proc.c +++ b/threadproc/beos/proc.c @@ -403,3 +403,16 @@ APR_DECLARE(apr_status_t) apr_procattr_limit_set(apr_procattr_t *attr, apr_int32 { return APR_ENOTIMPL; } + +APR_DECLARE(apr_status_t) apr_procattr_user_set(apr_procattr_t *attr, + const char *username, + const char *password) +{ + return APR_ENOTIMPL; +} + +APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr, + const char *groupname) +{ + return APR_ENOTIMPL; +} |