How do I create RAW TCP/IP packets in C++?(如何在 C++ 中创建 RAW TCP/IP 数据包?)
问题描述
我是 C++ 初学者/网络管理员,但我想如果有人为我指出正确的方向,我可以学习如何做到这一点.大多数教程都是使用由于某种原因不再起作用的旧代码进行演示的.
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 using old code that no longer works for some reason.
因为我使用的是 Linux,所以我需要的只是关于如何编写原始 Berkeley 套接字的说明.有人可以快速介绍一下吗?
Since I'm on Linux, all I need is an explanation on how to write raw Berkeley sockets. Can someone give me a quick run down?
推荐答案
首先阅读 Beej 的套接字编程指南 .它将带您快速了解如何开始编写网络代码.之后,您应该能够从阅读手册页中获取越来越多的信息.
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.
这篇关于如何在 C++ 中创建 RAW TCP/IP 数据包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C++ 中创建 RAW TCP/IP 数据包?
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07