1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-11-23 12:02:58 -05:00

allocate in advance

This commit is contained in:
Darien Raymond
2016-11-30 22:24:06 +01:00
parent 8b07c39281
commit 3ffef74d75

View File

@@ -90,8 +90,12 @@ type AckSegment struct {
NumberList []uint32
}
const ackNumberLimit = 128
func NewAckSegment() *AckSegment {
return new(AckSegment)
return &AckSegment{
NumberList: make([]uint32, 0, ackNumberLimit),
}
}
func (v *AckSegment) Conversation() uint16 {
@@ -110,7 +114,7 @@ func (v *AckSegment) PutNumber(number uint32) {
}
func (v *AckSegment) IsFull() bool {
return v.Count == 128
return v.Count == ackNumberLimit
}
func (v *AckSegment) ByteSize() int {