Open pax83 opened 9 years ago
I'm not aware of such an issue currently. Can you describe your problem more thoroughly?
Somtimes we receive next warning message:
WarningMessage: Socket exception: System.Net.Sockets.SocketException: Operation on non-blocking socket would block
at System.Net.Sockets.Socket.ReceiveFrom_nochecks_exc (System.Byte[] buf, Int32 offset, Int32 size, SocketFlags flags, System.Net.EndPoint& remote_end, Boolean throwOnError, System.Int32& error) [0x00000] in <filename unknown>:0
at System.Net.Sockets.Socket.ReceiveFrom_nochecks (System.Byte[] buf, Int32 offset, Int32 size, SocketFlags flags, System.Net.EndPoint& remote_end) [0x00000] in <filename unknown>:0
at System.Net.Sockets.Socket.ReceiveFrom (System.Byte[] buffer, Int32 offset, Int32 size, SocketFlags flags, System.Net.EndPoint& remoteEP) [0x00000] in <filename unknown>:0
at Lidgren.Network.NetPeer.Heartbeat () [0x00000] in <filename unknown>:0
And many warning messages
WarningMessage: Received unhandled library message Acknowledge from xxx.xxx.xxx.xxx:xxxxx
Once we tried to upgrade to the latest version of the library, but the problems become greater. And we rollback it. What is the most stable version of the library?
@pax83 please provide a small project which reproduces the issue.
Error]:Exception:{0}
{1}This platform is not supported at System.Collections.Generic.RBTree..ctor (System.Object hlp) [0x00000] in
I use the lidgren Mac 5.1.2 unity platform has been a problem
I use the last version
help me
Defined "CONSTRAINED" for your project.
Hmm... markup screws me... it's underscore, underscore, CONSTRAINED, underscore, underscore
My platform is ios 9.1 I have modified the "CONSTRAINED" Unity_IOS, but installed to the apple phone Is also an error
I've never tested the library on IOS; so please post back any fixes and changes necessary you find.
I have tried PlatformConstrained.cs andPlatformWin32.cs
[Error]:LobbyNetworkSystem.OnError Exception:Operation on non-blocking socket would block
at System.Collections.Generic.RBTree..ctor (System.Object hlp) [0x00000] in
I have tried PlatformConstrained.cs andPlatformWin32.cs
[Error]:LobbyNetworkSystem.OnError Exception:Operation on non-blocking socket would block
at System.Collections.Generic.RBTree..ctor (System.Object hlp) [0x00000] in
Oh,No
use Xcode 7.1.1 Close BitCode
help me !haha
I have this problem after reconecting to server
Try setting the command timeout to zero on the query. Worked for me.
private void ExecuteQuery(string qStr)
{
using (SqlConnection cnx = new SqlConnection(_ConnectionString))
{
using (SqlCommand cmd = new SqlCommand(qStr, cnx))
{
cmd.Connection.Open();
cmd.CommandTimeout = 0;
cmd.ExecuteNonQuery();
}
}
}
Is this issue fixed in last version of library? We use last year's version of the library.