| 737 | } |
| 738 | |
| 739 | void KNativeSocketObject::setBlocking(bool blocking) { |
| 740 | this->blocking = blocking; |
| 741 | #ifdef BOXEDWINE_MULTI_THREADED |
| 742 | setNativeBlocking(this->nativeSocket, blocking); |
| 743 | #endif |
| 744 | LOG_SOCK(" native socket: %x set blocking %s", nativeSocket, blocking?"true":"false"); |
| 745 | } |
| 746 | |
| 747 | bool KNativeSocketObject::isBlocking() { |
| 748 | return this->blocking; |
no test coverage detected