parent
4002231bd9
commit
6a9e4293d8
@ -339,6 +339,9 @@ Error constants
|
|||||||
|
|
||||||
socket type not supported
|
socket type not supported
|
||||||
|
|
||||||
|
.. c:macro:: UV_EUNATCH
|
||||||
|
|
||||||
|
protocol driver not attached
|
||||||
|
|
||||||
API
|
API
|
||||||
---
|
---
|
||||||
|
|||||||
@ -156,6 +156,7 @@ struct uv__queue {
|
|||||||
XX(EILSEQ, "illegal byte sequence") \
|
XX(EILSEQ, "illegal byte sequence") \
|
||||||
XX(ESOCKTNOSUPPORT, "socket type not supported") \
|
XX(ESOCKTNOSUPPORT, "socket type not supported") \
|
||||||
XX(ENODATA, "no data available") \
|
XX(ENODATA, "no data available") \
|
||||||
|
XX(EUNATCH, "protocol driver not attached") \
|
||||||
|
|
||||||
#define UV_HANDLE_TYPE_MAP(XX) \
|
#define UV_HANDLE_TYPE_MAP(XX) \
|
||||||
XX(ASYNC, async) \
|
XX(ASYNC, async) \
|
||||||
|
|||||||
@ -468,4 +468,10 @@
|
|||||||
# define UV__ENODATA (-4024)
|
# define UV__ENODATA (-4024)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(EUNATCH) && !defined(_WIN32)
|
||||||
|
# define UV__EUNATCH UV__ERR(EUNATCH)
|
||||||
|
#else
|
||||||
|
# define UV__EUNATCH (-4023)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* UV_ERRNO_H_ */
|
#endif /* UV_ERRNO_H_ */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user