blob: 62e8ac2ea8c8b0a2d08e78802136ca6bf3fdfc12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _NGX_CORE_H_INCLUDED_
#define _NGX_CORE_H_INCLUDED_
#define NGX_OK 0
#define NGX_ERROR -1
#define NGX_DONE NGX_ERROR
#define NGX_AGAIN -2
#define NGX_DECLINED -3
#endif /* _NGX_CORE_H_INCLUDED_ */
|