Create an iostream using boost asio specifying ip and port

后端 未结 3 1634
春和景丽
春和景丽 2021-02-06 10:36

I have a problem concerning boost asio libraries. I successfully tried to create a socket between a client and a server, this involves creation of resolvers in order to specify

3条回答
  •  悲哀的现实
    2021-02-06 11:06

    I've written a client/server system using Boost.Asio. The source is available on GitHub: Client.cpp and Server.cpp. Using Boost.Serialization together with Boost.Asio allows me to send arbitrary datastructures over the wire. I must say it is quite impressive!

提交回复
热议问题