blob: 61408e45005d5af328e3fa3668fb7873a82e867e [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Maxim Konovalovf8d59e32012-01-18 15:07:43 +00004 * Copyright (C) Nginx, Inc.
Igor Sysoevd90282d2004-09-28 08:34:51 +00005 */
6
7
Igor Sysoeva5362982004-03-04 07:04:55 +00008#ifndef _NGX_USER_H_INCLUDED_
9#define _NGX_USER_H_INCLUDED_
10
11
12#include <ngx_config.h>
13#include <ngx_core.h>
14
15
16/* STUB */
17#define ngx_uid_t ngx_int_t
18#define ngx_gid_t ngx_int_t
19
20
Igor Sysoev5dc59452011-05-16 14:54:50 +000021ngx_int_t ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
Igor Sysoev4d656dc2005-03-22 16:02:46 +000022 u_char **encrypted);
23
24
Igor Sysoeva5362982004-03-04 07:04:55 +000025#endif /* _NGX_USER_H_INCLUDED_ */