| 1576 | } |
| 1577 | |
| 1578 | void SocketSet::add |
| 1579 | ( |
| 1580 | TcpSocket *s, |
| 1581 | bool deleteWhenDone |
| 1582 | ) |
| 1583 | { |
| 1584 | s->SetNonBlocking(true); |
| 1585 | SocketSetData sdata; |
| 1586 | sdata.deleteWhenDone = deleteWhenDone; |
| 1587 | _store[s] = sdata; |
| 1588 | } |
| 1589 | |
| 1590 | #endif |
| 1591 |
nothing calls this directly
no test coverage detected