mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 01:38:24 -04:00
26 lines
570 B
Go
26 lines
570 B
Go
package mux_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
"github.com/v2fly/v2ray-core/v5/common/buf"
|
|
"github.com/v2fly/v2ray-core/v5/common/mux"
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
)
|
|
|
|
func BenchmarkFrameWrite(b *testing.B) {
|
|
frame := mux.FrameMetadata{
|
|
Target: net.TCPDestination(net.DomainAddress("www.v2fly.org"), net.Port(80)),
|
|
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()
|
|
}
|
|
}
|