How do I create RAW TCP/IP packets in C++?

后端 未结 11 1418
有刺的猬
有刺的猬 2020-12-24 06:59

I\'m a beginning C++ programmer / network admin, but I figure I can learn how to do this if someone points me in the right direction. Most of the tutorials are demonstrated

11条回答
  •  鱼传尺愫
    2020-12-24 07:40

    Start by reading Beej's guide on socket programming . It will bring you up to speed on how to start writing network code. After that you should be able to pick up more and more information from reading the man pages.

    Most of it will consist of reading the documentation for your favourite library, and a basic understanding of man pages.

提交回复
热议问题