一、基于TCP的socket 二、基于UDP的socket TCP协议与UDP协议 TCP(transport control protocol,传输控制协议)是面向连接的,面向流的,提供高可靠性服务。收发两端(客户端和服务器端)都要有一一成对的socket,因此,发送端为了将多个发往接收端的包,更 ...
分类:
编程语言 时间:
2020-02-26 21:13:33
阅读次数:
73
1、add_url_rule(rule, endpoint=None, view_func=None) 注:这个方法用来添加url与视图函数的映射,如果没有填写`endpoint`,默认使用`view_func`的名字作为`endpoint`。 app.add_url_rule('/list/',v ...
分类:
其他好文 时间:
2020-02-25 16:11:29
阅读次数:
76
//创建一个配置文件并保存 Properties properties = new Properties(); properties.setProperty("mail.host","smtp.qq.com"); properties.setProperty("mail.transport.prot ...
分类:
编程语言 时间:
2020-02-23 22:11:57
阅读次数:
89
安装docker 基础软件安装 # 安装基本软件$ sudo apt-get update$ sudo apt-get install apt-transport-https ca-certificates curl git software-properties-common lrzsz -y 添 ...
分类:
系统相关 时间:
2020-02-23 14:54:52
阅读次数:
82
从宏观上来讲,传输层 (Transport Layer) 提供逻辑上的进程间的 (process-to-process) 数据传输服务 ...
分类:
其他好文 时间:
2020-02-22 00:05:41
阅读次数:
55
[oracle@localhost dumpdir]$ impdp system/oracle@ORA12CPDB1 dumpfile=expdat.dmp directory=datapump_dir transport_datafiles='/u01/app/oracle/oradata/ora ...
分类:
其他好文 时间:
2020-02-20 15:27:02
阅读次数:
113
HTTP(hypertext transport protocol),即超文本传输协议。这个协议详细规定了浏览器和万维网服务器之间互相通信的规则。 HTTP就是一个通信规则,通信规则规定了客户端发送给服务器的内容格式,也规定了服务器发送给客户端的内容格式。其实我们要学习的就是这个两个格式!客户端发送 ...
分类:
Web程序 时间:
2020-02-20 12:55:27
阅读次数:
93
error in ./src/assets/styles/app.scss Module build failed: @import "./reset.scss"; ^ Invalid CSS after "v": expected 1 selector or at-rule, was 'var a ...
1.第一步需要到github上下载Auth类放入 extend/auth/Auth.php https://github.com/5ini99/think-auth 2.第二步,添加固定的三个数据表。 -- think_auth_rule,规则表, -- id:主键,name:规则唯一标识, tit ...
分类:
Web程序 时间:
2020-02-19 18:44:17
阅读次数:
79
class Transport: '交通工具' def __init__(self,name, type, place): self.name=name self.type=type self.place=place function='运输' def pick(self): print('%s%s ...
分类:
编程语言 时间:
2020-02-18 18:31:10
阅读次数:
74