Correct socket option/levels

This commit is contained in:
Somebody Whoisbored 2022-06-18 18:37:46 -07:00
parent 0657047d9c
commit a7715c15da
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ nn::Result SocketClient::init(const char* ip, u16 port) {
}
#endif
if ((this->socket_log_socket = nn::socket::Socket(2, 1, 0)) < 0) {
if ((this->socket_log_socket = nn::socket::Socket(2, 1, 6)) < 0) {
Logger::log("Socket Unavailable.\n");
@ -51,9 +51,9 @@ nn::Result SocketClient::init(const char* ip, u16 port) {
serverAddress.port = nn::socket::InetHtons(this->port);
serverAddress.family = 2;
bool sockOptValue = true;
int sockOptValue = true;
nn::socket::SetSockOpt(this->socket_log_socket, 0, TCP_NODELAY, &sockOptValue, sizeof(bool));
nn::socket::SetSockOpt(this->socket_log_socket, 6, TCP_NODELAY, &sockOptValue, sizeof(sockOptValue));
nn::Result result;