When DolphinConnection runs connect() more than 64 times it crashes the application in odd ways.
The way this is solved is to make enet and client a property of DolphinConnection. This way we only need to initialize the client once which seems to be solving the issue.
When
DolphinConnection
runsconnect()
more than 64 times it crashes the application in odd ways.The way this is solved is to make
enet
andclient
a property ofDolphinConnection
. This way we only need to initialize the client once which seems to be solving the issue.