| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package proxy
- type Base struct {
- Name string `yaml:"name" json:"name"`
- Server string `yaml:"server" json:"server"`
- Port int `yaml:"port" json:"port"`
- Type string `yaml:"type" json:"type"`
- UDP bool `yaml:"udp,omitempty" json:"udp,omitempty"`
- country string `yaml:"country,omitempty" json:"country,omitempty"`
- useable bool `yaml:"useable,omitempty" json:"useable,omitempty"`
- }
- func (b *Base) TypeName() string {
- if b.Type == "" {
- return "unknown"
- }
- return b.Type
- }
- func (b *Base) SetName(name string) {
- b.Name = name
- }
- func (b *Base) SetIP(ip string) {
- b.Server = ip
- }
- func (b *Base) BaseInfo() *Base {
- return b
- }
- func (b *Base) Clone() Base {
- c := *b
- return c
- }
- func (b *Base) SetUseable(useable bool) {
- b.useable = useable
- }
- func (b *Base) Useable() bool {
- return b.useable
- }
- func (b *Base) SetCountry(country string) {
- b.country = country
- }
- func (b *Base) Country() string {
- return b.country
- }
- type Proxy interface {
- String() string
- ToClash() string
- ToSurge() string
- Link() string
- Identifier() string
- SetName(name string)
- SetIP(ip string)
- TypeName() string
- BaseInfo() *Base
- Clone() Proxy
- SetUseable(useable bool)
- Useable() bool
- SetCountry(country string)
- Country() string
- }
|