处理远程通信的进程
Process to process remote communication
我在 2 台不同的机器上有 2 个进程 运行。
在不使用任何 username/password 的情况下发送指令的最佳通信方式是什么?
语言:C++
有很多解决方案,各有利弊。尝试使用谷歌搜索。
由于您没有给出任何其他要求,最简单的方法是通过套接字编程。查看此 https://www.geeksforgeeks.org/socket-programming-cc/ for some basic knowledge and http://www.cs.rpi.edu/~moorthy/Courses/os98/Pgms/socket.html 示例。
我在 2 台不同的机器上有 2 个进程 运行。 在不使用任何 username/password 的情况下发送指令的最佳通信方式是什么?
语言:C++
有很多解决方案,各有利弊。尝试使用谷歌搜索。
由于您没有给出任何其他要求,最简单的方法是通过套接字编程。查看此 https://www.geeksforgeeks.org/socket-programming-cc/ for some basic knowledge and http://www.cs.rpi.edu/~moorthy/Courses/os98/Pgms/socket.html 示例。