摘要: 1、C实现代码 Example of Client-Server Program in C (Using Sockets and TCP) | Programming Logic 2、问题 调试经验--缺少头文件导致的段错误 - 戴安澜式编程 - 博客园 (84条消息) 【C语言】warning: 阅读全文
posted @ 2023-05-31 20:06 代码诠释的世界 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1、 介绍 本文使用u2net, pillow, 及backgroundremover进行照片背景的替换 2、安装 pip install pillow pip install backgroundremover 3、u2net介绍 https://github.com/xuebinqin/U-2- 阅读全文
posted @ 2023-05-31 17:37 代码诠释的世界 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://gatling.io/open-source/ 二、安装JDK 资料太多了,不写了 https://jingyan.baidu.com/article/48b558e3f135687f38c09a03.html 三、安装Gatling 下载完解压,配置下环境变量Path即可 阅读全文
posted @ 2023-05-31 16:29 代码诠释的世界 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1、现象 平时都是四次挥手,为啥没有服务端确认的ack呢 2、解释 (84条消息) 为什么书上说是 TCP 四次挥手,但是实际会出现 TCP 三次挥手?_tcp挥手 只抓到3_倾听铃的声的博客-CSDN博客 ~$ cat /boot/config-4.15.0-1 config-4.15.0-163 阅读全文
posted @ 2023-05-31 16:04 代码诠释的世界 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 一、场景 有一天开发问我,有没有什么工具可以测试socket,tcp,当时有点懵,这种需求还是少见 二、方法 使用Jmeter可以进行相关的测试 三、创建服务端环境 使用python搞个socket服务端 import socket # 创建 socket对象 socket_server = soc 阅读全文
posted @ 2023-05-31 15:25 代码诠释的世界 阅读(2253) 评论(0) 推荐(0) 编辑
摘要: Wireshark是一款流行的网络协议分析工具,使用它可以捕获网络数据包,并对其进行分析。在Wireshark中,过滤规则是非常重要的,通过过滤规则可以快速定位和过滤关注的数据包 一、基础过滤规则 1、按IP地址过滤 ip.addr == x.x.x.x # 过滤指定IP地址的数据包 ip.src 阅读全文
posted @ 2023-05-31 11:51 代码诠释的世界 阅读(7311) 评论(0) 推荐(0) 编辑
摘要: 一、场景 由于jmeter测试时,接口存在超时问题,所以就需要分析超时的原因 二、抓包 我们需要把分析数据抓下来 -> % sudo tcpdump -i eth0 host 192.168.3.123 and port 6788 -w capture.pcap tcpdump: listening 阅读全文
posted @ 2023-05-31 10:44 代码诠释的世界 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1、场景 我想实时输出当前系统时间,对比日志之间的时间差 2、方法 #!/bin/bash while(true) do echo $(date +%F%n%T) sleep 1 done 3、date命令参数 ~$ date --help Usage: date [OPTION]... [+FOR 阅读全文
posted @ 2023-05-31 10:02 代码诠释的世界 阅读(63) 评论(0) 推荐(0) 编辑