| 454 | // transfer kicks the client. Applies to dedicated and self-hosted servers alike, |
| 455 | // mirroring the original OFP Flashpoint.cfg "MaxCustomFileSize" key. 0 blocks all. |
| 456 | MaxCustomFileSize = Poseidon::NetworkMaxCustomFileSizeFromCfg(cfg, MaxCustomFileSize); |
| 457 | |
| 458 | _server = InitServer(port, password, cfg); |
| 459 | return _server != nullptr; |
| 460 | } |
| 461 | |
| 462 | NetworkServer::~NetworkServer() |
| 463 | { |
| 464 | RemoveSystemMessages(); |
| 465 | |
| 466 | if (IsDedicatedServer()) |
| 467 | { |
nothing calls this directly
no test coverage detected