2020-11-25 13:01:53 +02:00
|
|
|
package mux_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
|
|
"github.com/xtls/xray-core/common/mux"
|
|
|
|
"github.com/xtls/xray-core/common/net"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkFrameWrite(b *testing.B) {
|
|
|
|
frame := mux.FrameMetadata{
|
|
|
|
Target: net.TCPDestination(net.DomainAddress("www.example.com"), 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()
|
|
|
|
}
|
|
|
|
}
|