Skip to content

Commit 5615880

Browse files
committed
fix compile error.
1 parent 58239c6 commit 5615880

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/async_tcp_client.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ void async_tcp_client::service()
282282

283283
#if 0
284284
// we should check whether the connection have exception before any operations.
285-
if(FD_ISSET(this->impl_.native_handle(), &(fdss[except_op])))
285+
if(FD_ISSET(this->impl_.native_handle(), &(fds_array[except_op])))
286286
{
287287
int ec = xxsocket::get_last_errno();
288288
INET_LOG("socket.select exception triggered, error code: %d, error msg:%s\n", ec, xxsocket::get_error_msg(ec));
@@ -474,9 +474,9 @@ bool async_tcp_client::connect(void)
474474
}
475475
if (ret == 0)
476476
{ // connect succeed, reset fds
477-
FD_ZERO(&fdss_[read_op]);
478-
FD_ZERO(&fdss_[write_op]);
479-
FD_ZERO(&fdss_[except_op]);
477+
FD_ZERO(&fds_array_[read_op]);
478+
FD_ZERO(&fds_array_[write_op]);
479+
FD_ZERO(&fds_array_[except_op]);
480480

481481
register_descriptor(interrupter_.read_descriptor(), socket_event_read);
482482
register_descriptor(impl_.native_handle(), socket_event_read);

0 commit comments

Comments
 (0)