mirror of
				https://github.com/optim-enterprises-bv/Xray-core.git
				synced 2025-11-03 20:17:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			552 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			552 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package mux_test
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"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"
 | 
						|
)
 | 
						|
 | 
						|
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()
 | 
						|
	}
 | 
						|
}
 |