1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/common/mux/frame_test.go

26 lines
570 B
Go
Raw Normal View History

2018-11-14 21:11:05 +00:00
package mux_test
import (
"testing"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/mux"
"github.com/v2fly/v2ray-core/v4/common/net"
2018-11-14 21:11:05 +00:00
)
func BenchmarkFrameWrite(b *testing.B) {
frame := mux.FrameMetadata{
2021-02-16 20:31:50 +00:00
Target: net.TCPDestination(net.DomainAddress("www.v2fly.org"), net.Port(80)),
2018-11-14 21:11:05 +00:00
SessionID: 1,
SessionStatus: mux.SessionStatusNew,
}
writer := buf.New()
defer writer.Release()
for i := 0; i < b.N; i++ {
common.Must(frame.WriteTo(writer))
writer.Clear()
}
}