mirror of
https://github.com/nginx/nginx.git
synced 2024-12-14 03:39:00 +08:00
17 lines
246 B
C
17 lines
246 B
C
|
#ifndef _NGX_FILE_H_INCLUDED_
|
||
|
#define _NGX_FILE_H_INCLUDED_
|
||
|
|
||
|
|
||
|
#include <ngx_files.h>
|
||
|
#include <ngx_log.h>
|
||
|
|
||
|
typedef struct ngx_file_s ngx_file_t;
|
||
|
|
||
|
struct ngx_file_s {
|
||
|
ngx_fd_t fd;
|
||
|
ngx_log_t *log;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif _NGX_FILE_H_INCLUDED_
|