devilutionX/Source/platform/switch/network.cpp
Gleb Mazovetskiy 7e1fea6f76 clang-format all files in {Source,test}/
Also includes a few manual tweaks to comments and newlines for better results.

Co-authored-by: Anders Jenbo <anders@jenbo.dk>
2021-11-24 23:44:12 +01:00

23 lines
519 B
C++

#include "platform/switch/network.h"
#include <cstdlib>
#include <switch.h>
#include <unistd.h>
static int nxlink_sock = -1; // for stdio on Switch
void switch_enable_network()
{
// enable network and stdio on Switch
socketInitializeDefault();
// enable error messages via nxlink on Switch
nxlink_sock = nxlinkStdio();
atexit(switch_disable_network);
}
void switch_disable_network()
{
// disable network and stdio on Switch
if (nxlink_sock != -1)
close(nxlink_sock);
socketExit();
}