摘要:
没找到如何直接指定端口号: C:\Users\Administrator>ftp 192.168.2.100:2221未知主机 192.168.2.100:2221。ftp>ftp> 间接使用: C:\Users\Administrator>ftpftp>ftp> open 192.168.2.10 阅读全文
摘要:
Nginx配置支持HTTP PUT/DELETE方法 nginx需要支持--with-http_dav_module; 修改nginx配置文件,/etc/nginx/conf.d/default.conf location / { root /usr/share/nginx/html; index 阅读全文
摘要:
svn log -l 100 | grep xiaoming | awk '{print $1}' | xargs -I {} svn log -v -{} 阅读全文
摘要:
这个免费的工具可以将几乎所有 DRM-free 的媒体文件转换成音频,这与大多数电话供应商的待机音乐和IVR公告兼容。 https://www.g711.org/ 阅读全文
摘要:
root:/# tshark -r tester_192.168.1.99_port2\(10\).pcap -T fields -e tcp.stream | uniq | wc -l Running as user "root" and group "root". This could be d 阅读全文
摘要:
http://www.lightlink.com/tjweber/StripWav/WAVE.html http://soundfile.sapp.org/doc/WaveFormat/ 阅读全文
摘要:
/** * Quick Sort, * * int main() { * int array[8] = {1,3,6,5,4,2,8,7}; * fts_quick_sort(array, 0, 7); * } * * @param arr * The pointer of array to sor 阅读全文
摘要:
Ncat 7.50 (https://nmap.org/ncat) -u 指定udp报文 -l 监听的端口号 客户端: [root@localhost root]# nc -u 192.168.11.126 10000 aaaaaa ^C [root@localhost root]# 服务端: [r 阅读全文
摘要:
Session Initiation Protocol 介绍 SIP是VoIP技术最常使用的协议,它是一种应用程序层协议,可与其他应用程序层协议配合使用,以控制Internet上的多媒体通信会话。 VoIP 技术 开始之前先对VoIP做些了解. VoIP是一项允许您通过Internet传递语音和多媒 阅读全文
摘要:
参考网站: https://www.opensips.org/ http://sipp.sourceforge.net/doc/reference.html https://sipp.readthedocs.io/en/latest/index.html https://github.com/sag 阅读全文
摘要:
char digraph hex dec official name 解释 转义符^@ NU 0x00 0 NULL (NUL) 空字符 \0^A SH 0x01 1 START OF HEADING (SOH) 标题开始 ^B SX 0x02 2 START OF TEXT (STX) 正文开始 阅读全文
摘要:
https://blog.csdn.net/jessicaiu/article/details/82178342 https://csr.chinassl.net/convert-ssl.html 1. 编辑->首选项->Protocols->TLS->RSA key list->添加->.p12或 阅读全文
摘要:
DLL(Dynamic Link Library)是动态链接库的缩写,简而言之,它是一个信息或函数库,可以从不同程序的链接到DLL中的信息或函数。 它是动态的,因为它是一个存储库,通常有几百个函数,链接到它的程序可以根据需要使用其中的任何一个,或者全部。 这样做的好处是,程序不必在其自己的文件中包含 阅读全文