зеркало из https://github.com/Azure/DotNetty.git
63 строки
2.3 KiB
C#
63 строки
2.3 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
namespace Factorial.Server
|
|
{
|
|
using System;
|
|
using System.IO;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Threading.Tasks;
|
|
using DotNetty.Handlers.Logging;
|
|
using DotNetty.Handlers.Tls;
|
|
using DotNetty.Transport.Bootstrapping;
|
|
using DotNetty.Transport.Channels;
|
|
using DotNetty.Transport.Channels.Sockets;
|
|
using Examples.Common;
|
|
|
|
class Program
|
|
{
|
|
static async Task RunServerAsync()
|
|
{
|
|
ExampleHelper.SetConsoleLogger();
|
|
|
|
var bossGroup = new MultithreadEventLoopGroup(1);
|
|
var workerGroup = new MultithreadEventLoopGroup();
|
|
X509Certificate2 tlsCertificate = null;
|
|
if (ServerSettings.IsSsl)
|
|
{
|
|
tlsCertificate = new X509Certificate2(Path.Combine(ExampleHelper.ProcessDirectory, "dotnetty.com.pfx"), "password");
|
|
}
|
|
try
|
|
{
|
|
var bootstrap = new ServerBootstrap();
|
|
bootstrap
|
|
.Group(bossGroup, workerGroup)
|
|
.Channel<TcpServerSocketChannel>()
|
|
.Option(ChannelOption.SoBacklog, 100)
|
|
.Handler(new LoggingHandler("LSTN"))
|
|
.ChildHandler(new ActionChannelInitializer<ISocketChannel>(channel =>
|
|
{
|
|
IChannelPipeline pipeline = channel.Pipeline;
|
|
if (tlsCertificate != null)
|
|
{
|
|
pipeline.AddLast(TlsHandler.Server(tlsCertificate));
|
|
}
|
|
pipeline.AddLast(new LoggingHandler("CONN"));
|
|
pipeline.AddLast(new NumberEncoder(), new BigIntegerDecoder(), new FactorialServerHandler());
|
|
}));
|
|
|
|
IChannel bootstrapChannel = await bootstrap.BindAsync(ServerSettings.Port);
|
|
|
|
Console.ReadLine();
|
|
|
|
await bootstrapChannel.CloseAsync();
|
|
}
|
|
finally
|
|
{
|
|
Task.WaitAll(bossGroup.ShutdownGracefullyAsync(), workerGroup.ShutdownGracefullyAsync());
|
|
}
|
|
}
|
|
|
|
public static void Main() => RunServerAsync().Wait();
|
|
}
|
|
} |