研究下wifi参数的含义 #The word of "Default" must not be removed Default CountryRegion= CountryRegionABand= CountryCode= SSID=Dennis2860AP NetworkType=Infra WirelessMode= Channel= BeaconPeriod= TxPower= BGProtection= TxPreamble= RTSThreshold= FragThresho…
socket参数的详解 socket.socket(family=AF_INET,type=SOCK_STREAM,proto=0,fileno=None) 创建socket对象的参数说明: family 地址系列应为AF_INET(默认值),AF_INET6,AF_UNIX,AF_CAN或AF_RDS.(AF_UNIX 域实际上是使用本地 socket 文件来通信) type 套接字类型应为SOCK_STREAM(默认值),SOCK_DGRAM,SOCK_RAW或其他SOCK_常量之一.SOC…
直接阅读源代码吧: 在flask的app.py里,查看run函数的定义 def run(self, host=None, port=None, debug=None, **options): """Runs the application on a local development server. If the :attr:`debug` flag is set the server will automatically reload for code changes an…