Made default port be a higher port

This commit is contained in:
Jack Garrard 2022-10-25 18:07:26 -07:00
parent ed83827cc1
commit 655368241f
1 changed files with 3 additions and 2 deletions

View File

@ -87,8 +87,9 @@ nn::Result SocketClient::init(const char* ip, u16 port) {
return -1;
}
// TODO Find a way around the 41553 constant port
udpAddress.address = hostAddress;
udpAddress.port = nn::socket::InetHtons(0);
udpAddress.port = nn::socket::InetHtons(41553);
udpAddress.family = 2;
this->udp_addr = udpAddress;
this->has_recv_udp = false;
@ -156,7 +157,7 @@ s32 SocketClient::setPeerUdpPort(u16 port) {
}
const char* SocketClient::getUdpStateChar() {
if (this->udp_addr.port == 0) {
if (this->udp_addr.port == 41553) {
return "Waiting for handshake";
}