Use ares_socket_t instead of int for sockets

pull/22966/head
Bert Belder 2010-11-25 01:40:42 +01:00
parent 6e54f416ad
commit d7de459b80
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class Channel : public ObjectWrap {
ares_channel channel;
static void SockStateCb(void *data, int sock, int read, int write);
static void SockStateCb(void *data, ares_socket_t sock, int read, int write);
static void QueryCb(void *arg, int status, int timeouts, unsigned char* abuf, int alen);
};
@ -746,7 +746,7 @@ Handle<Value> Channel::ProcessFD(const Arguments& args) {
}
void Channel::SockStateCb(void *data, int sock, int read, int write) {
void Channel::SockStateCb(void *data, ares_socket_t sock, int read, int write) {
Channel *c = static_cast<Channel*>(data);
HandleScope scope;