More style cleanup

FossilOrigin-Name: 753ff34122c906fdba43b8c382ac52cc9f0ac3ce585ec9f4db6b1dc1f21ef86a
This commit is contained in:
Jonathan Schleifer 2025-03-08 03:05:16 +00:00
parent dd08a1069e
commit a28209edcf
27 changed files with 525 additions and 539 deletions

View file

@ -90,7 +90,7 @@ connects(OFString *servername)
addserver(servername);
conoutf(@"attempting to connect to %@", servername);
ENetAddress address = {ENET_HOST_ANY, CUBE_SERVER_PORT};
ENetAddress address = { ENET_HOST_ANY, CUBE_SERVER_PORT };
@autoreleasepool {
if (enet_address_set_host(&address, servername.UTF8String) <
0) {
@ -120,14 +120,14 @@ disconnect(int onlyclean, int async)
enet_peer_disconnect(clienthost->peers);
enet_host_flush(clienthost);
disconnecting = lastmillis;
};
}
if (clienthost->peers->state != ENET_PEER_STATE_DISCONNECTED) {
if (async)
return;
enet_peer_reset(clienthost->peers);
};
}
enet_host_destroy(clienthost);
};
}
if (clienthost && !connecting)
conoutf(@"disconnected");
@ -385,8 +385,8 @@ gets2c() // get updates from the server
conoutf(@"could not connect to server");
disconnect();
return;
};
};
}
}
while (
clienthost != NULL && enet_host_service(clienthost, &event, 0) > 0)
switch (event.type) {