C++ application: Is it possible to pass accepted TCP connection from one process to another?(C++ 应用程序:是否可以将接受的 TCP 连接从一个进程传递到另一个进程?)
问题描述
所以我想知道 - 是否有可能将接受的 TCP 连接(在 Windows 或 Unix 等操作系统上)从一个进程传递到另一个进程?这里的重点是传递连接 - 而不是以代理应用程序的方式传递数据.
So I wonder - is it possible to pass accepted TCP connection (on Windows or Unix like OS) from one process to another? Here the point is to pass connection - not data in a way a proxy app would.
推荐答案
在 Windows 上,使用 WSADuplicateSocket
,传入WSAPROTOCOL_INFO
到另一个进程,使用 WSPSocket
重新创建套接字.
On Windows, use WSADuplicateSocket
, pass the filled in WSAPROTOCOL_INFO
to the other process, use WSPSocket
to recreate a socket.
在类 Unix 操作系统上,这可以使用 sendmsg()
系统调用实现.libancillary 为您抽象了这一点.
On unix-like OS'es this is possible using the sendmsg()
system call. libancillary abstracts this for you.
这篇关于C++ 应用程序:是否可以将接受的 TCP 连接从一个进程传递到另一个进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 应用程序:是否可以将接受的 TCP 连接从一个进程传递到另一个进程?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01