摘要:
https://www.cnblogs.com/rockyching2009/p/11107094.html 1、netstat 可以查看系统当前使用的socket、socket状态、创建socket的进程、连接对端的IP地址等。 查看路由信息可以加-r参数,或者使用route命令 2、sysctl 阅读全文
摘要:
https://www.cnblogs.com/rockyching2009/p/11107094.html 1、netstat 可以查看系统当前使用的socket、socket状态、创建socket的进程、连接对端的IP地址等。 查看路由信息可以加-r参数,或者使用route命令 2、sysctl 阅读全文
摘要:
https://www.cnblogs.com/rockyching2009/p/11032230.html 一、背景 端对端的通信中存在的一个问题是:如何唯一地标识通信主体。对于socket,解决这个问题的方式是四元组:自身IP,自身端口,对方IP,对方端口。 在socket编程中,作为clien 阅读全文
摘要:
socket编程实战-tcp_tw_recycle问题 阅读全文
摘要:
https://www.cnblogs.com/rockyching2009/p/11032229.html 一、背景 connect()是会阻塞的。 这意味着,作为客户端去连服务器等了好久都得不到相应,业务处理被推迟,更有甚者等到黄花谢了等来个失败(ETIMEDOUT)。 二、分析及方案 除了超时 阅读全文
摘要:
一、HCI介绍 HCI: Host Controller Interface,it provides a uniform interface method of accessing a Bluetooth Controller’s capabilities. From [Vol 2] Part E: 阅读全文
摘要:
一、简介 通过“BT[1]-Introduction to Bluetooth Low Energy”知道,两个BLE设备通信需要完成两件事: 广播:设备发送广播信息表明自己的存在,让周围的设备可以Discover自己 连接:Peripheral和Central设备建立peer-to-peer连接, 阅读全文
摘要:
原文:https://learn.adafruit.com/introduction-to-bluetooth-low-energy Introduction Bluetooth Low Energy (BLE), sometimes referred to as "Bluetooth Smart" 阅读全文
摘要:
Overview Bluetooth standard offers basic rate (BR) or enhanced data rate (EDR) and Bluetooth Low Energy (LE) support. Devices that can support BR/EDR 阅读全文
摘要:
一、引子 为了把编译好的bin和lib文件打包到镜像里面,新建了个package,在编译的时候,总是报库缺失的错误:Package XXX is missing dependencies for the following libraries这就有意思了:1、它怎么知道我的bin和lib文件依赖哪些 阅读全文
摘要:
build/envsetup.sh 在lunch函数执行过程中,很多次通过直接/间接的方式调用到get_build_var()函数: 以printconfig为例,最终执行的是:get_build_var report_config然后调用build/dumpvar.mk这个Makefile,显示当 阅读全文
|