blob: fd5bb92732fad80dc22a9737f8a26fb7a8a2528c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef _NGX_CORE_H_INCLUDED_
#define _NGX_CORE_H_INCLUDED_
#define NGX_OK 0
#define NGX_ERROR -1
#define NGX_AGAIN -2
#define NGX_DONE -3
/*
#define NGX_BUSY -3
*/
#define NGX_DECLINED -4
/*
#define NGX_ALERT -5
*/
#define NGX_MAXHOSTNAMELEN 32
/*
#define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
*/
#endif /* _NGX_CORE_H_INCLUDED_ */
|