mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 01:09:17 +01:00
Double SocketAsyncEventArgs buffer length
This commit is contained in:
parent
082b201800
commit
40b63c9853
@ -73,6 +73,7 @@ namespace DS4Windows
|
||||
private SocketAsyncEventArgs[] argsList;
|
||||
private int listInd = 0;
|
||||
private ReaderWriterLockSlim poolLock = new ReaderWriterLockSlim();
|
||||
private const int ARG_BUFFER_LEN = 80;
|
||||
|
||||
public delegate void GetPadDetail(int padIdx, ref DualShockPadMeta meta);
|
||||
|
||||
@ -81,8 +82,8 @@ namespace DS4Windows
|
||||
public UdpServer(GetPadDetail getPadDetailDel)
|
||||
{
|
||||
portInfoGet = getPadDetailDel;
|
||||
argsList = new SocketAsyncEventArgs[40];
|
||||
for (int num = 0; num < 40; num++)
|
||||
argsList = new SocketAsyncEventArgs[ARG_BUFFER_LEN];
|
||||
for (int num = 0; num < ARG_BUFFER_LEN; num++)
|
||||
{
|
||||
SocketAsyncEventArgs args = new SocketAsyncEventArgs();
|
||||
args.SetBuffer(new byte[100], 0, 100);
|
||||
@ -188,7 +189,7 @@ namespace DS4Windows
|
||||
int temp = 0;
|
||||
poolLock.EnterWriteLock();
|
||||
temp = listInd;
|
||||
listInd = ++listInd % 40;
|
||||
listInd = ++listInd % ARG_BUFFER_LEN;
|
||||
SocketAsyncEventArgs args = argsList[temp];
|
||||
poolLock.ExitWriteLock();
|
||||
|
||||
@ -682,7 +683,7 @@ namespace DS4Windows
|
||||
int temp = 0;
|
||||
poolLock.EnterWriteLock();
|
||||
temp = listInd;
|
||||
listInd = ++listInd % 40;
|
||||
listInd = ++listInd % ARG_BUFFER_LEN;
|
||||
SocketAsyncEventArgs args = argsList[temp];
|
||||
poolLock.ExitWriteLock();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user