13 lines
214 B
Go
13 lines
214 B
Go
|
|
package bcap
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
const repeatedKeepaliveMinInterval = time.Second
|
||
|
|
const trackedTCPSegments = 8
|
||
|
|
const keepaliveResponseMaxDelay = 5 * time.Second
|
||
|
|
|
||
|
|
type tcpSegmentRange struct {
|
||
|
|
seq uint32
|
||
|
|
end uint32
|
||
|
|
}
|