mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
b68411f460
Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
26 lines
534 B
Go
26 lines
534 B
Go
package conf
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/browserforwarder"
|
|
)
|
|
|
|
type BrowserForwarderConfig struct {
|
|
ListenAddr string `json:"listenAddr"`
|
|
ListenPort int32 `json:"listenPort"`
|
|
}
|
|
|
|
func (b *BrowserForwarderConfig) Build() (proto.Message, error) {
|
|
b.ListenAddr = strings.TrimSpace(b.ListenAddr)
|
|
if b.ListenAddr != "" && b.ListenPort == 0 {
|
|
b.ListenPort = 54321
|
|
}
|
|
return &browserforwarder.Config{
|
|
ListenAddr: b.ListenAddr,
|
|
ListenPort: b.ListenPort,
|
|
}, nil
|
|
}
|