您的位置:首页 > 理论基础 > 计算机网络

Simple and fast async binary TCP socket server

2015-03-15 00:00 323 查看
摘要: Simple and fast async binary TCP socket server?

I'm looking for a simple and fast TCP socket server written in C#. It should be async (run alongside a WinForms app) and support async receiving/sending data to connected clients. I found the following libraries that might work, but I'm looking for advice on specific libraries.
I'm trying to send binary data (using my custom serializer) from C# to an AS3 frontend. I have the client socket already written in AS3 but I need a reliable socket server in C#.

XYNetSocket - single file, unreliable and misses packets, does not support binary

NetSockets

SocketAsyncEventArgs

SuperSocket - looks very bloated (100+ classes)

Which socket server library have you used with success? Does it support binary and is it reliable?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: