[Solved] KryoNet Auto Pinging (KeepAlive)

In my program KryoNet sends Pings itself way too often, about 50 times per ms (!) i printed them to the console with timestamps.
That’s way too often, can I somehow reduce the amount?


		con.setKeepAliveTCP(1000);
		con.setTimeout(1000);

didn’t change anything (called in the Serverlistener receive code) and i couldn’t find a method in the server object itself.
couldn’t find anything through google either :c

edit: I called con.updateReturnTripTime() in my received method, so it just sends the Ping messages arround, fixed :smiley: