单声道、unix 套接字
有谁知道创建 unix 域套接字并以异步方式侦听它的 C#(单声道)应用程序的示例?
Does anyone know an example of c# (mono) application that creates unix domain socket and listens to it async way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 中的 GracefulShutdown() 方法ModMonoWebSource.cs。在创建套接字之后,它是 unix 域套接字还是 IPv4 套接字就不再重要了。异步接受连接是在 Mono.WebServer/ 文件夹中完成的,但我会让您了解在哪里以及如何进行。
Take a look at the method GracefulShutdown() in ModMonoWebSource.cs. After the point where the socket is created, it does not matter any more whether it was a unix domain socket or an IPv4 socket. Accepting connection asynchronously is done in Mono.WebServer/ folder, but I'll let you find out where and how.
可能是这个问题的方法。
May be it approach for this question.