mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Update HISP
This commit is contained in:
parent
d73cd92c52
commit
29e5ab8093
8 changed files with 31 additions and 23 deletions
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.8.41.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.41.0")]
|
||||
[assembly: AssemblyVersion("1.8.42.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.42.0")]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: hisp
|
||||
Version: 1.8.41
|
||||
Version: 1.8.42
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.8.41.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.41.0")]
|
||||
[assembly: AssemblyVersion("1.8.42.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.42.0")]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -85,11 +85,6 @@ namespace HISP.Server
|
|||
|
||||
Logger.CrashPrint(crashMsg);
|
||||
|
||||
try
|
||||
{
|
||||
GameServer.ShutdownServer();
|
||||
}
|
||||
catch (Exception) { };
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -85,10 +85,18 @@ namespace HISP.Server.Network
|
|||
}
|
||||
|
||||
internal override void receivePackets(object sender, SocketAsyncEventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!base.checkForError(e))
|
||||
ProcessReceivedPackets(e.BytesTransferred, e.Buffer);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.ErrorPrint(ex.StackTrace);
|
||||
try { this.Disconnect(); } catch (Exception) { };
|
||||
};
|
||||
}
|
||||
|
||||
public override void Send(byte[] data)
|
||||
{
|
||||
|
|
|
@ -35,16 +35,21 @@ namespace HISP.Server.Network
|
|||
}
|
||||
}
|
||||
internal virtual void receivePackets(object sender, SocketAsyncEventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
do
|
||||
{
|
||||
if (!checkForError(e))
|
||||
if (checkForError(e)) break;
|
||||
ProcessReceivedPackets(e.BytesTransferred, e.Buffer);
|
||||
else
|
||||
break;
|
||||
|
||||
if (checkForError(e)) break;
|
||||
|
||||
} while (!socket.ReceiveAsync(e));
|
||||
}
|
||||
catch (Exception ex) {
|
||||
Logger.ErrorPrint(ex.StackTrace);
|
||||
try { this.Disconnect(); } catch (Exception) { };
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
@ -102,8 +107,8 @@ namespace HISP.Server.Network
|
|||
socket = null;
|
||||
|
||||
}
|
||||
catch (SocketException e) { }
|
||||
catch (ObjectDisposedException e) { };
|
||||
catch (SocketException) { }
|
||||
catch (ObjectDisposedException) { };
|
||||
}
|
||||
|
||||
onDisconnectCallback();
|
||||
|
|
|
@ -350,7 +350,7 @@ namespace HISP.Server.Network
|
|||
additionalLengthData = BitConverter.GetBytes(Convert.ToUInt16(toSend)).Reverse().ToArray();
|
||||
|
||||
}
|
||||
else if(toSend < Int64.MaxValue)
|
||||
else if(Convert.ToInt64(toSend) < Int64.MaxValue)
|
||||
{
|
||||
maskAndLength |= WEBSOCKET_LENGTH_INT64;
|
||||
additionalLengthData = BitConverter.GetBytes(Convert.ToInt64(toSend)).Reverse().ToArray();
|
||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.8.41.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.41.0")]
|
||||
[assembly: AssemblyVersion("1.8.42.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.42.0")]
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue