comparison src/os/unix/ngx_types.h @ 186:c1f3a3c7c5db

nginx-0.0.1-2003-11-17-00:49:42 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 16 Nov 2003 21:49:42 +0000
parents d5f50cefc322
children da8c5707af39
comparison
equal deleted inserted replaced
185:d5f50cefc322 186:c1f3a3c7c5db
7 7
8 typedef int ngx_fd_t; 8 typedef int ngx_fd_t;
9 typedef struct stat ngx_file_info_t; 9 typedef struct stat ngx_file_info_t;
10 typedef ino_t ngx_file_uniq_t; 10 typedef ino_t ngx_file_uniq_t;
11 11
12 typedef DIR ngx_dir_t; 12 typedef struct {
13 typedef struct dirent ngx_dirent_t; 13 DIR *dir;
14 struct dirent *de;
15 struct stat info;
16 unsigned info_valid;
17 } ngx_dir_t;
14 18
15 19
16 #endif /* _NGX_TYPES_H_INCLUDED_ */ 20 #endif /* _NGX_TYPES_H_INCLUDED_ */