Files
netstack/tcpip/seqnum/seqnum.go
2021-09-07 21:52:00 +08:00

9 lines
250 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 包 seqnum 定义了 TCP 序列号的类型和方法,以便它们适合 32 位字并在发生溢出时正常工作
package seqnum
// 一个序列号的值
type Value uint32
// size表示一个序号窗口的大小长度
type Size uint32