DotNetty学习(六)——进阶学习Socket和WebSocket互通

本文介绍了如何使用DotNetty实现Socket和WebSocket的互通。通过动态添加Handler,设置专门的Socket和WebSocket处理程序,并利用一个判断Handler决定连接路径。详细讲解了通信流程和上下线管理,适合个人研究和探讨。
摘要由CSDN通过智能技术生成

总览链接:

https://blog.csdn.net/a1234012340a/article/details/91040073


经过前面得学习。基本上可以简单编写socket通信和websocket通信

现在提出一个需求。要求websocket和socket进行通信

那么这个怎么进行思考呢?

1.首先需要让两种客户端同时连接至服务器

2.进行通信

就这么简单

下面详细得讲解一下两种方式如何同时连接一个服务端

首先基础代码

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace WebSocketCommunication
{
    using System;
    using System.IO;
    using System.Net;
    using System.Runtime;
    using System.Runtime.InteropServices;
    using System.Security.Cryptography.X509Certificates;
    using System.Threading.Tasks;
    using DotNetty.Buffers;
    using DotNetty.Codecs;
    using DotNetty.Codecs.Http;
    using DotNetty.Common;
    using DotNetty.Handlers.Tls;
    using DotNetty.Transport.Bootstrapping;
    using DotNetty.Transport.Channels;
    using DotNetty.Transport.Channels.Sockets;
    using DotNetty.Transport.Libuv;

    public class Program
    {

        public static async Task RunServerAsync()
        {

            bool useLibuv = true;
            Console.WriteLine("Transport type : " + (useLibuv ? "Libuv" : "Socket"));


           
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值