2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
* Copyright (C) Nginx, Inc.
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-03-04 15:04:55 +08:00
|
|
|
#ifndef _NGX_USER_H_INCLUDED_
|
|
|
|
#define _NGX_USER_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef uid_t ngx_uid_t;
|
|
|
|
typedef gid_t ngx_gid_t;
|
|
|
|
|
|
|
|
|
2011-05-16 22:54:50 +08:00
|
|
|
ngx_int_t ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
|
2005-03-23 00:02:46 +08:00
|
|
|
u_char **encrypted);
|
|
|
|
|
|
|
|
|
2004-03-04 15:04:55 +08:00
|
|
|
#endif /* _NGX_USER_H_INCLUDED_ */
|