目录 1 c ? strcpy ? strcat ? strlen ? strncat ? strncpy ? strcspn ? strdup ? stricmp ? strerror ? strcmp strcpy 原型:extern char *strcpy(char *dest,char * ...
分类:
其他好文 时间:
2019-12-07 12:36:32
阅读次数:
104
先写服务端server.py: import socket import time HOST = '172.17.xx.xx' #服务器的私网IP #HOST = 'localhost' PORT = 8001 sock = socket.socket(socket.AF_INET, socket. ...
分类:
编程语言 时间:
2019-12-03 20:00:40
阅读次数:
96
参考:https://www.cnblogs.com/big-devil/p/8590007.html Linux 块设备驱动程序 概念补充: 块 扇区是硬件数据传输的基本单元,块则是虚拟文件系统传输数据的基本单位。Linux内核中,块的大小必须是2的次幂,但不能超过一个页(4K)的大小。 段 同一 ...
分类:
系统相关 时间:
2019-12-02 16:55:42
阅读次数:
117
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <unistd.h> #include <string.h> #include <strings.h> #include <errno.h> #include < ...
分类:
系统相关 时间:
2019-11-30 14:09:08
阅读次数:
91
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <unistd.h> #include <string.h> #include <strings.h> #include <errno.h> #include < ...
分类:
其他好文 时间:
2019-11-28 23:17:20
阅读次数:
120
两个文件:(1)brief.php主程序文件(2)doRequest.php需要异步处理的程序 brief.php: $url = 'localhost:8867'; echo 123; // 先输出,中间部分为异步处理程序 $fp = fsockopen($url,-1, $errno, $err ...
分类:
Web程序 时间:
2019-11-26 19:05:47
阅读次数:
91
connection reset by peer的常见原因 1.服务器的并发连接数超过了其承载量,服务器会将其中一些连接关闭;2. errno = 104错误表明你在对一个对端socket已经关闭的的连接调用write或send方法,在这种情况下,调用write或send方法后,对端socket便会 ...
分类:
其他好文 时间:
2019-11-21 12:29:49
阅读次数:
61
FastDFS :java.lang.Exception: getStoreStorage fail, errno code: 28 ...
分类:
编程语言 时间:
2019-11-21 09:19:29
阅读次数:
138