| 2963 | } |
| 2964 | |
| 2965 | void CUpDownClient::SetConnectOptions(uint8_t options, bool encryption, bool callback) |
| 2966 | { |
| 2967 | SetCryptLayerSupport((options & 0x01) != 0 && encryption); |
| 2968 | SetCryptLayerRequest((options & 0x02) != 0 && encryption); |
| 2969 | SetCryptLayerRequires((options & 0x04) != 0 && encryption); |
| 2970 | SetDirectUDPCallbackSupport((options & 0x08) != 0 && callback); |
| 2971 | } |
| 2972 | |
| 2973 | |
| 2974 | #ifdef DEBUG_ZOMBIE_CLIENTS |
no outgoing calls
no test coverage detected