2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
9 * @file core.cpp Functions used to initialize/shut down the core network
12 #include "../../stdafx.h"
13 #include "../../debug.h"
14 #include "os_abstraction.h"
17 #include "../../safeguards.h"
21 * Initializes the network core (as that is needed for some platforms
22 * @return true if the core has been initialized, false otherwise
24 bool NetworkCoreInitialize()
26 /* Let's load the network in windows */
30 Debug(net
, 5, "Loading windows socket library");
31 if (WSAStartup(MAKEWORD(2, 0), &wsa
) != 0) {
32 Debug(net
, 0, "WSAStartup failed, network unavailable");
42 * Shuts down the network core (as that is needed for some platforms
44 void NetworkCoreShutdown()