Sets actual server instance (can be nullptr).
| 222 | return; |
| 223 | } |
| 224 | ip = address.Substring(0, ptr - address); |
| 225 | port = atoi(ptr + 1); |
| 226 | } |
| 227 | |
| 228 | // Actual enumeration instance (can be nullptr). |
| 229 | static NetSessionEnum* _enum = nullptr; |
| 230 | |
| 231 | // Actual client instance (can be nullptr). |
| 232 | static NetClient* _client = nullptr; |
| 233 | |
| 234 | // NetServer instance to process control messages. |
| 235 | static NetServer* _server = nullptr; |
| 236 | |
| 237 | // Sets actual enumeration instance (can be nullptr). |
no test coverage detected