nginx-quic/src/core/ngx_core.h

14 lines
269 B
C
Raw Normal View History

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
#endif /* _NGX_CORE_H_INCLUDED_ */