Apache2
apr_user.h
Go to the documentation of this file.
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements. See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef APR_USER_H
18 #define APR_USER_H
19 
25 #include "apr.h"
26 #include "apr_errno.h"
27 #include "apr_pools.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32 
42 #ifdef WIN32
43 typedef PSID apr_uid_t;
44 #else
45 typedef uid_t apr_uid_t;
46 #endif
47 
51 #ifdef WIN32
52 typedef PSID apr_gid_t;
53 #else
54 typedef gid_t apr_gid_t;
55 #endif
56 
57 #if APR_HAS_USER
58 
67  apr_gid_t *groupid,
68  apr_pool_t *p);
69 
78  apr_pool_t *p);
79 
89  const char *username, apr_pool_t *p);
90 
99  const char *username,
100  apr_pool_t *p);
101 
110 #if defined(WIN32)
112 #else
113 #define apr_uid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
114 #endif
115 
124  apr_gid_t groupid, apr_pool_t *p);
125 
134  const char *groupname, apr_pool_t *p);
135 
144 #if defined(WIN32)
146 #else
147 #define apr_gid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
148 #endif
149 
150 #endif /* ! APR_HAS_USER */
151 
154 #ifdef __cplusplus
155 }
156 #endif
157 
158 #endif /* ! APR_USER_H */
APR Platform Definitions.
APR Error Codes.
APR memory allocation.
int apr_status_t
Definition: apr_errno.h:44
struct apr_pool_t apr_pool_t
Definition: apr_pools.h:60
apr_status_t apr_uid_homepath_get(char **dirname, const char *username, apr_pool_t *p)
gid_t apr_gid_t
Definition: apr_user.h:54
apr_status_t apr_uid_get(apr_uid_t *userid, apr_gid_t *groupid, const char *username, apr_pool_t *p)
apr_status_t apr_uid_current(apr_uid_t *userid, apr_gid_t *groupid, apr_pool_t *p)
#define apr_gid_compare(left, right)
Definition: apr_user.h:147
apr_status_t apr_gid_get(apr_gid_t *groupid, const char *groupname, apr_pool_t *p)
uid_t apr_uid_t
Definition: apr_user.h:45
apr_status_t apr_uid_name_get(char **username, apr_uid_t userid, apr_pool_t *p)
apr_status_t apr_gid_name_get(char **groupname, apr_gid_t groupid, apr_pool_t *p)
#define apr_uid_compare(left, right)
Definition: apr_user.h:113
#define APR_DECLARE(x)
Definition: macros.h:6
apr_pool_t * p