摘要: UDP协议 相较于TCP而言,UDP通信的形式更像是发短信。不需要在数据传输之前建立、维护连接。只专心获取数据就好。省去了三次握手的过程,通信速度可以大大提高,但与之伴随的通信的稳定性和正确率便得不到保证。因此,我们称UDP为“无连接的不可靠报文传递”。 那么与我们熟知的TCP相比,UDP有哪些优点 阅读全文
posted @ 2020-06-22 23:36 xd_xumaomao 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <stdlib.h> #include <pthread.h> #include <unistd.h> #include <assert.h> #include <stdio.h> #include <string.h> #include <signal.h> #inclu 阅读全文
posted @ 2020-06-22 15:16 xd_xumaomao 阅读(116) 评论(0) 推荐(0) 编辑