Changeset 6178
- Timestamp:
- Jul 5, 2001, 9:26:18 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/ws2_32/socket.cpp ¶
r6155 r6178 108 108 char tmpbuf[300]; 109 109 strcpy(tmpbuf, ""); 110 if (lEvent |FD_READ)110 if (lEvent & FD_READ) 111 111 strcat(tmpbuf, " FD_READ"); 112 if (lEvent |FD_WRITE)112 if (lEvent & FD_WRITE) 113 113 strcat(tmpbuf, " FD_WRITE"); 114 if (lEvent |FD_OOB)114 if (lEvent & FD_OOB) 115 115 strcat(tmpbuf, " FD_OOB"); 116 if (lEvent |FD_ACCEPT)116 if (lEvent & FD_ACCEPT) 117 117 strcat(tmpbuf, " FD_ACCEPT"); 118 if (lEvent |FD_CONNECT)118 if (lEvent & FD_CONNECT) 119 119 strcat(tmpbuf, " FD_CONNECT"); 120 if (lEvent |FD_CLOSE)120 if (lEvent & FD_CLOSE) 121 121 strcat(tmpbuf, " FD_CLOSE"); 122 if (lEvent |FD_QOS)122 if (lEvent & FD_QOS) 123 123 strcat(tmpbuf, " FD_QOS"); 124 if (lEvent |FD_GROUP_QOS)124 if (lEvent & FD_GROUP_QOS) 125 125 strcat(tmpbuf, " FD_GROUP_QOS"); 126 if (lEvent |FD_ROUTING_INTERFACE_CHANGE)126 if (lEvent & FD_ROUTING_INTERFACE_CHANGE) 127 127 strcat(tmpbuf, " FD_ROUTING_INTERFACE_CHANGE"); 128 if (lEvent |FD_ADDRESS_LIST_CHANGE)128 if (lEvent & FD_ADDRESS_LIST_CHANGE) 129 129 strcat(tmpbuf, " FD_ADDRESS_LIST_CHANGE"); 130 130 dprintf(("event bits:%s", tmpbuf));
Note:
See TracChangeset
for help on using the changeset viewer.