Shivers
关于
友链
标签
分类
网络
计算机网络
全球asn(as编号)查询 http://as.chacuo.net https://tools.ipip.net/as.php https://www.iamle.com/archives/1961.html 路由协议:运行在路由器上的协议,该协议用来确定数据包如何到达目标路径。网关是路 ...
2023-07-14
cs基础
libevent2
标准使用流程 1. Creating an event base struct event_base *event_base_new(void); 创建event-base结构体 struct event_config *event_config_new(void); struct event ...
2023-07-14
开源库
libcurl
before transfer create handle CURL *easy_handle = curl_easy_init(); set options /* set URL to operate on */ res = curl_easy_setopt(easy_handle, C ...
2023-07-14
开源库
python_network
socket asyncore 为了后向兼容,新代码建议使用 asyncio 。 模块提供了基本的基础设施,用于实现异步socket服务器和socket客户端 单处理器实现同时做多件不同的事只有两种方式,一种是多线程,另一种是使用现代操作系统提供的io多路复用系统调用:select,poll。 ...
2023-04-01
python