mirror of
https://github.com/daeuniverse/dae.git
synced 2025-02-06 17:19:08 +07:00
26 lines
503 B
Go
26 lines
503 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) since 2023, v2rayA Organization <team@v2raya.org>
|
|
*/
|
|
|
|
package consts
|
|
|
|
import "fmt"
|
|
|
|
type DialMode string
|
|
|
|
const (
|
|
DialMode_Ip DialMode = "ip"
|
|
DialMode_Domain DialMode = "domain"
|
|
DialMode_DomainPlus DialMode = "domain+"
|
|
)
|
|
|
|
func ParseDialMode(mode string) (DialMode, error) {
|
|
switch mode {
|
|
case "ip", "domain", "domain+":
|
|
return DialMode(mode), nil
|
|
default:
|
|
return "", fmt.Errorf("unsupported dial mode: %v", mode)
|
|
}
|
|
}
|