mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
44 lines
No EOL
1.1 KiB
C#
44 lines
No EOL
1.1 KiB
C#
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Reflection.Metadata.Ecma335;
|
|
using System.Text;
|
|
|
|
namespace server
|
|
{
|
|
public class Program
|
|
{
|
|
public static async Task Main(string[] args)
|
|
{
|
|
await Program.Listen();
|
|
}
|
|
|
|
public static async Task Listen()
|
|
{
|
|
var ipEndPoint = new IPEndPoint(IPAddress.Any, 8888);
|
|
TcpListener listener = new(ipEndPoint);
|
|
|
|
try
|
|
{
|
|
listener.Start();
|
|
|
|
using TcpClient handler = await listener.AcceptTcpClientAsync();
|
|
await using NetworkStream stream = handler.GetStream();
|
|
|
|
stream.BeginRead(new byte[1024], 0, 1024, Callback, null);
|
|
|
|
var message = $"📅 {DateTime.Now} 🕛";
|
|
var dateTimeBytes = Encoding.UTF8.GetBytes(message);
|
|
await stream.WriteAsync(dateTimeBytes);
|
|
}
|
|
finally
|
|
{
|
|
listener.Stop();
|
|
}
|
|
}
|
|
|
|
public static void Callback(IAsyncResult ar)
|
|
{
|
|
Console.WriteLine("Is ocmpleted: {0}", ar.IsCompleted);
|
|
}
|
|
}
|
|
} |