Home

Awesome

En |

<p></p> <p></p> <p align="center"> <img src="logo.png" width = "100" height = "100" alt="The name of the image" align=center /> </p> <div align="center">

NuGet(TouchSocket) NuGet(TouchSocket) License star fork <a href="https://jq.qq.com/?_wv=1027&k=gN7UL4fw"> <img src="https://img.shields.io/badge/QQ group-234762506-red" alt="QQ"> </a> NuGet(TouchSocket)

</div> <div align="center">

三十功名尘与土,八千里路云和月。

</div>

🎀Description

Alt

'TouchSocket' is a powerful and easy-to-use.NET network communication framework for languages such as C#, VB.Net, and F#. It provides a variety of communication modules, including TCP, UDP, SSL, WebSocket, Modbus, etc. It supports solving the problem of TCP packet subcontracting and UDP large packet fragment combination. The framework supports a variety of protocol templates to quickly parse data packets such as fixed headers, fixed lengths, and interval characters.


🌟Related Documentation


🖥Supporting the environment

🥪Support frameworks

🌴A quick overview of TouchSocket features

Traditional IOCP and TouchSocket IOCP modes

The IOCP of TouchSocket is not the same as the traditional one, just take Microsoft's official example as an example, he uses MemoryBuffer to open up a piece of memory, divide it evenly, and then assign a zone to each session to receive, and then copy the received data, and then process the copied data. The TouchSocket is to take a usable memory block from the memory pool before each reception, and then use it directly for receiving, and after receiving the data, the memory block is directly thrown out for processing, so as to avoid the copy operation, although it is only a small design, but when transmitting 10wtimes64kbdata, the performance difference is 10 times.

Data Processing Adapters

I believe that everyone has used other Socket products, so TouchSocket is also designed to learn from the excellent design concept of other products, data processing adapter is one of them, but unlike the design of other products, the adapter of TouchSocket is more powerful and easy to use. and flexible. Not only can it parse packets in advance, but it can also parse data objects, which can be replaced at any time and then take effect immediately. For example, you can use a fixed packet header to preprocess the data, so as to solve the problem of data subcontracting and sticky packet. It can also directly parse the HTTP data protocol, WebSocket data protocol, etc.

Compatibility and adaptation

TouchSocket provides a variety of framework models and is fully compatible with all protocols based on TCP and UDP protocols. For example, TcpService and TcpClient have the same basic functions as Sockets, but they enhance the robustness and concurrency of the framework, and throw the connection and received data in the form of events, so that users can use it more user-friendly.

🔗Contact the author

👑Functional mapping

<p align="center"> <img src="images/1.png" alt="The name of the image" align=center /> </p>

✨Simple example

The following is just a simple example of how to create an example, please see Documentation for more details.

TcpService

TcpService service = new TcpService();
service.Connecting = (client, e) => {return EasyTask.CompletedTask; };//有客户端正在连接
service.Connected = (client, e) => {return EasyTask.CompletedTask; };//有客户端连接
service.Disconnected = (client, e) => {return EasyTask.CompletedTask; };//有客户端断开连接
service.Received = (client, e) =>
{
    //Received information from the client
    string mes = e.ByteBlock.Span.ToString(Encoding.UTF8);
    Console.WriteLine($"Removed from {client. ID} Message received: {}");
    return EasyTask.CompletedTask;
};
await service.StartAsync(7789);//Start

TcpClient

TcpClient tcpClient = new TcpClient();
tcpClient.Connected = (client, e) => {return EasyTask.CompletedTask; };//Successfully connected to the server
tcpClient.Disconnected = (client, e) => {return EasyTask.CompletedTask; };//Disconnect from the server, which is not triggered when the connection is unsuccessful.
tcpClient.Received = (client, e) =>
{
    //Information is received from the server
    string mes = e.ByteBlock.Span.ToString(Encoding.UTF8);
    Console.WriteLine($"Message received: {mes}");
    return EasyTask.CompletedTask;
};

await tcpClient.ConnectAsync("127.0.0.1:7789");
await tcpClient.SendAsync("Hello");

TcpClient reconnect

In the plug-in configuration of Config, you can use the reconnection plug-in.

.ConfigurePlugins(a=> 
{
   a.UseReconnection(5, true, 1000);
});

FixedHeaderPackageAdapter package

The adapter mainly solves the problem of Tcp sticking and packing, and the data format adopts a simple and efficient "Baotou + Data Body" mode, in which Baotou supports:

The above data headers all use the default side mode (little-end mode) of TouchSocketBitConverter, and users can switch the default side mode according to their needs.

TouchSocketBitConverter.DefaultEndianType = EndianType.Little;

CustomFixedHeaderDataHandlingAdapter

The user-defined fixed header adapter mainly helps users solve the data frame information with fixed headers. For example, the following data formats only need to implement a few interfaces to complete the parsing, please refer to the API for details.

|1|1|1|**********|

CustomUnfixedHeaderDataHandlingAdapter

The user-defined non-fixed header adapter mainly helps users solve the problem of data frame information with unfixed headers. For example, the most typical HTTP packets have a data header separated from the data body by "\r\n", and the data header is not fixed because of the different request information of the requester, and the length of the data body is also explicitly specified by the value of the ContentLength of the data header, so you can consider using CustomUnfixedHeaderDataHandlingAdapter to parse, which can also be achieved through simple development.


Thanks

Thank you for your support of TouchSocket, if you have any other questions, please submit an Issue, or join the group QQ: 234762506 to discuss.

Thanks to the support of the following tools

Support the author

Special Statement

The TouchSocket project has been added to the dotNET China organization.

dotnetchina