| H A D | channel.c | 44 # define sock_write(sd, buf, len) send((SOCKET)sd, buf, len, 0) argument 45 # define sock_read(sd, buf, len) recv((SOCKET)sd, buf, len, 0) argument 46 # define sock_close(sd) closesocket((SOCKET)sd) argument 56 # define sock_write(sd, buf, len) write(sd, buf, len) argument 57 # define sock_read(sd, buf, len) read(sd, buf, len) argument 58 # define sock_close(sd) close(sd) argument 60 # define fd_write(sd, buf, len) write(sd, buf, len) argument 61 # define fd_close(sd) close(sd) argument 734 if (sd >= 0) in channel_connect() 851 if (FD_ISSET(sd, &rfds) || FD_ISSET(sd, &wfds)) in channel_connect() [all …]
|