Linux网络编程之Tcp(内含服务器、客户端代码实例) https://blog.csdn.net/QQ1402369668/article/details/86090092
运行上述事例代码,服务端在accept函数调用等待后,client端发送字符串,服务端的accept报错:Segmentation fault (core dumped)。
Linux基于TCP/IP简单的客户端、服务器通信程序实例 https://blog.csdn.net/fucangzxx/article/details/52032804
运行上述例程,没有出现问题。
对比两个例程,发现:添加上头文件#include <arpa/inet.h>就不会运行崩溃。
测试环境:Linux version 4.4.0-142-generic (buildd@lcy01-amd64-006) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.4) ) #168~14.04.1-Ubuntu SMP Sat Jan 19 11:26:28 UTC 2019。