nxt_event_conn_... functions and structures have been renamed

to nxt_conn_...
This commit is contained in:
Igor Sysoev
2017-06-14 15:18:52 +03:00
parent 3e2632688f
commit 7574c64992
37 changed files with 1968 additions and 2055 deletions

18
src/nxt_file_event.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* Copyright (C) Igor Sysoev
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_FILE_EVENT_H_INCLUDED_
#define _NXT_FILE_EVENT_H_INCLUDED_
typedef struct {
void *data;
nxt_file_t *file;
nxt_work_handler_t handler;
nxt_task_t *task;
} nxt_file_event_t;
#endif /* _NXT_FILE_EVENT_H_INCLUDED_ */