mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-11 17:47:20 +10:00
13 lines
274 B
Go
13 lines
274 B
Go
//go:build !with_quic
|
|
|
|
package networkquality
|
|
|
|
import (
|
|
C "github.com/sagernet/sing-box/constant"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func NewHTTP3MeasurementClientFactory(dialer N.Dialer) (MeasurementClientFactory, error) {
|
|
return nil, C.ErrQUICNotIncluded
|
|
}
|