miwaiwai

导航

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 38 下一页

2023年4月24日 #

connect

摘要: 阅读全文

posted @ 2023-04-24 13:19 米歪歪 阅读(92) 评论(0) 推荐(0)

recv函数具有包的提前预读

摘要: #include <sys/types.h> #include <sys/socket.h> ssize_t recv(int sockfd, void *buf, size_t len, int flags); 1.具有紧急指针功能 2.具有带外数据 3.数据包提前预读 ssize_t recvf 阅读全文

posted @ 2023-04-24 12:55 米歪歪 阅读(22) 评论(0) 推荐(0)

2023年4月23日 #

通过信号集添加信号

摘要: 阅读全文

posted @ 2023-04-23 18:49 米歪歪 阅读(25) 评论(0) 推荐(0)

2023年4月21日 #

select模型

摘要: 阅读全文

posted @ 2023-04-21 22:09 米歪歪 阅读(21) 评论(0) 推荐(0)

获取资源相关的软硬件函数

摘要: #include <sys/time.h> #include <sys/resource.h> int getrlimit(int resource, struct rlimit *rlim); int setrlimit(int resource, const struct rlimit *rli 阅读全文

posted @ 2023-04-21 20:57 米歪歪 阅读(26) 评论(0) 推荐(0)

udp服务器模型

摘要: 阅读全文

posted @ 2023-04-21 20:18 米歪歪 阅读(24) 评论(0) 推荐(0)

框架der,webservice

摘要: 框架der,webservice 阅读全文

posted @ 2023-04-21 19:14 米歪歪 阅读(18) 评论(0) 推荐(0)

2023年4月19日 #

socket进程注意事项

摘要: 阅读全文

posted @ 2023-04-19 19:07 米歪歪 阅读(22) 评论(0) 推荐(0)

c&c++ 的window环境获取exe文件所在的目录

摘要: #include <iostream> #include<stdio.h> #include <direct.h> #include <windows.h> #include<process.h> #include <atlstr.h> char buff[MAX_PATH];//用于存放获取的路径 阅读全文

posted @ 2023-04-19 11:16 米歪歪 阅读(205) 评论(0) 推荐(0)

2023年4月18日 #

c&c++获取当前目录

摘要: #include <iostream> #include<stdio.h> #include <direct.h> #define MAXPATH 1024 using namespace std; int main(int argc, char* argv) { char buf[80]; cha 阅读全文

posted @ 2023-04-18 22:44 米歪歪 阅读(29) 评论(0) 推荐(0)

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 38 下一页