2002-08-22 11:24:03 -04:00
|
|
|
#ifndef _NGX_CORE_H_INCLUDED_
|
|
|
|
#define _NGX_CORE_H_INCLUDED_
|
|
|
|
|
|
|
|
|
2002-09-11 11:18:33 -04:00
|
|
|
#define NGX_OK 0
|
|
|
|
#define NGX_ERROR -1
|
2002-09-12 10:42:29 -04:00
|
|
|
#define NGX_DONE NGX_ERROR
|
2002-09-11 11:18:33 -04:00
|
|
|
#define NGX_AGAIN -2
|
2002-12-05 13:21:24 -03:00
|
|
|
#define NGX_WAITING -3
|
|
|
|
#define NGX_DECLINED -4
|
2002-08-22 11:24:03 -04:00
|
|
|
|
|
|
|
|
2003-01-15 04:02:27 -03:00
|
|
|
#define NGX_MAXHOSTNAMELEN 32
|
|
|
|
/*
|
|
|
|
#define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-08-22 11:24:03 -04:00
|
|
|
#endif /* _NGX_CORE_H_INCLUDED_ */
|