|
|
@ -10,6 +10,7 @@ using TouchSocket.Core; |
|
|
using TouchSocket.Http; |
|
|
using TouchSocket.Http; |
|
|
using TouchSocket.Http.WebSockets; |
|
|
using TouchSocket.Http.WebSockets; |
|
|
using TouchSocket.Sockets; |
|
|
using TouchSocket.Sockets; |
|
|
|
|
|
using static System.Runtime.InteropServices.JavaScript.JSType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ForwardingServer |
|
|
namespace ForwardingServer |
|
|
@ -69,7 +70,6 @@ namespace ForwardingServer |
|
|
// using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
|
|
|
// using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
|
|
|
|
|
|
|
|
|
await AsyncTcpServer.service.SendAsync(s_, bodyString); |
|
|
await AsyncTcpServer.service.SendAsync(s_, bodyString); |
|
|
LogGing.LogGingDATA(bodyString); |
|
|
|
|
|
|
|
|
|
|
|
DATA.Person deserializedPerson = JsonSerializer.Deserialize<DATA.Person>(bodyString)!; |
|
|
DATA.Person deserializedPerson = JsonSerializer.Deserialize<DATA.Person>(bodyString)!; |
|
|
|
|
|
|
|
|
@ -111,8 +111,6 @@ namespace ForwardingServer |
|
|
e.Context.Response.SetStatus(200, "success"); |
|
|
e.Context.Response.SetStatus(200, "success"); |
|
|
e.Context.Response.SetContent(Encoding.UTF8.GetBytes(dat.ToCharArray())); |
|
|
e.Context.Response.SetContent(Encoding.UTF8.GetBytes(dat.ToCharArray())); |
|
|
await e.Context.Response.AnswerAsync(); |
|
|
await e.Context.Response.AnswerAsync(); |
|
|
|
|
|
|
|
|
LogGing.LogGingDATA(dat); |
|
|
|
|
|
} |
|
|
} |
|
|
catch (TimeoutException) |
|
|
catch (TimeoutException) |
|
|
{ |
|
|
{ |
|
|
|