Browse Source

async await UDP downlink

pull/2925/head
Student Main 4 years ago
parent
commit
9ced417d54
No known key found for this signature in database GPG Key ID: AA78519C208C8742
1 changed files with 21 additions and 29 deletions
  1. +21
    -29
      shadowsocks-csharp/Controller/Service/UDPRelay.cs

+ 21
- 29
shadowsocks-csharp/Controller/Service/UDPRelay.cs View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using NLog;
using Shadowsocks.Controller.Strategy;
using Shadowsocks.Encryption;
@@ -114,48 +115,39 @@ namespace Shadowsocks.Controller
_remote?.SendTo(dataOut, outlen, SocketFlags.None, _remoteEndPoint);
}
public void Receive()
public async Task ReceiveAsync()
{
EndPoint remoteEndPoint = new IPEndPoint(ListenAddress, 0);
logger.Debug($"++++++Receive Server Port, size:" + _buffer.Length);
_remote?.BeginReceiveFrom(_buffer, 0, _buffer.Length, 0, ref remoteEndPoint, new AsyncCallback(RecvFromCallback), null);
}
public void RecvFromCallback(IAsyncResult ar)
{
try
{
if (_remote == null) return;
EndPoint remoteEndPoint = new IPEndPoint(ListenAddress, 0);
int bytesRead = _remote.EndReceiveFrom(ar, ref remoteEndPoint);
byte[] dataOut = new byte[bytesRead];
int outlen;
while (true)
{
IEncryptor encryptor = EncryptorFactory.GetEncryptor(_server.method, _server.password);
// encryptor.DecryptUDP(_buffer, bytesRead, dataOut, out outlen);
outlen = encryptor.DecryptUDP(dataOut, _buffer.AsSpan(0, bytesRead));
byte[] sendBuf = new byte[outlen + 3];
Array.Copy(dataOut, 0, sendBuf, 3, outlen);
var result = await _remote.ReceiveFromAsync(_buffer, SocketFlags.None, remoteEndPoint);
int bytesRead = result.ReceivedBytes;
byte[] dataOut = new byte[bytesRead];
int outlen;
logger.Debug(_remoteEndPoint, _localEndPoint, outlen, "UDP Relay down");
_local?.SendTo(sendBuf, outlen + 3, 0, _localEndPoint);
IEncryptor encryptor = EncryptorFactory.GetEncryptor(_server.method, _server.password);
outlen = encryptor.DecryptUDP(dataOut, _buffer.AsSpan(0, bytesRead));
byte[] sendBuf = new byte[outlen + 3];
Array.Copy(dataOut, 0, sendBuf, 3, outlen);
Receive();
}
catch (ObjectDisposedException)
{
// TODO: handle the ObjectDisposedException
logger.Debug(_remoteEndPoint, _localEndPoint, outlen, "UDP Relay down");
await _local?.SendToAsync(sendBuf, SocketFlags.None, _localEndPoint);
}
}
catch (Exception)
catch (Exception e)
{
// TODO: need more think about handle other Exceptions, or should remove this catch().
logger.LogUsefulException(e);
}
finally
{
// No matter success or failed, we keep receiving
}
}
public void Receive()
{
_ = ReceiveAsync();
}
public void Close()


Loading…
Cancel
Save