summaryrefslogtreecommitdiffhomepage
path: root/src/core/ngx_file.h
blob: 0d6838686ee7c101d42d72d145aeb1f697c4b436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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_