MAC 中的 TCP 客户端使用 C++
我正在尝试为tcp套接字的客户端部分编写C++代码,以将数据发送到用nodejs编写的服务器。我可以在 Windows 平台上实现它,但是在 MAC OS 上做同样的事情被证明是困难的,任何用于 MAC OS 客户端 tcp 套接字的 C++ 帮助/代码都受到高度赞赏。
I am trying to write a C++ code for the client part of tcp socket to send data to server written in nodejs. I could achieve it on Windows platform, however doing the same on MAC OS is proving tough, any help/code in C++ for the client tcp socket for MAC OS is highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于我不知道您在哪个方面遇到麻烦,也许最好的建议是使用独立于平台的 C++ 库,这样使其在 Mac 和 Windows 上工作的唯一要求就是重新编译它。
我不确定那里有什么,但我确实找到了这个: http://dlib.net/
Since I don't know what area you are finding trouble with, perhaps the best suggestion is to use a platform independent C++ library so that the only requirement you have for making it work on a Mac and windows is to recompile it.
I am not sure what is out there, but I did find this one : http://dlib.net/
我使用了 linux/unix 库来做同样的事情,并且在 MAC 上工作起来就像一个魅力......
这个链接有信息:: http://www.linuxhowtos.org/C_C++/socket.htm
I used the linux/unix libraries for the same and worked like a charm on the MAC...
this link has the info :: http://www.linuxhowtos.org/C_C++/socket.htm