摘要: 三次握手 1. 客户端通过向服务器端发送一个SYN来创建一个主动打开,作为三路握手的一部分。客户端把这段连接的序号设定为随机数 A。 2. 服务器端应当为一个合法的SYN回送一个SYN/ACK。ACK 的确认码应为 A+1,SYN/ACK 包本身又有一个随机序号 B。 3. 最后,客户端再发送一个A 阅读全文
posted @ 2017-09-18 16:51 Dus 阅读(279) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2017-09-18 14:42 Dus 阅读(150) 评论(0) 推荐(0) 编辑