Update uv_getaddrinfo_cb prototype.
Make it clear that the first argument is a req, not a handle.
This commit is contained in:
parent
0fde10825e
commit
0005b52b70
@ -300,11 +300,11 @@ typedef void (*uv_prepare_cb)(uv_prepare_t* handle, int status);
|
||||
typedef void (*uv_check_cb)(uv_check_t* handle, int status);
|
||||
typedef void (*uv_idle_cb)(uv_idle_t* handle, int status);
|
||||
typedef void (*uv_exit_cb)(uv_process_t*, int exit_status, int term_signal);
|
||||
typedef void (*uv_walk_cb)(uv_handle_t* handle, void* arg);
|
||||
typedef void (*uv_fs_cb)(uv_fs_t* req);
|
||||
typedef void (*uv_work_cb)(uv_work_t* req);
|
||||
typedef void (*uv_after_work_cb)(uv_work_t* req);
|
||||
typedef void (*uv_walk_cb)(uv_handle_t* handle, void* arg);
|
||||
typedef void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* handle,
|
||||
typedef void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* req,
|
||||
int status,
|
||||
struct addrinfo* res);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user