mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-25 02:16:11 +07:00
26 lines
362 B
Go
26 lines
362 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) 2022-2023, v2rayA Organization <team@v2raya.org>
|
|
*/
|
|
|
|
package netutils
|
|
|
|
import "net/url"
|
|
|
|
type URL struct {
|
|
*url.URL
|
|
}
|
|
|
|
func (u *URL) Port() string {
|
|
if port := u.URL.Port(); port != "" {
|
|
return port
|
|
}
|
|
switch u.Scheme {
|
|
case "http":
|
|
return "80"
|
|
case "https":
|
|
return "443"
|
|
}
|
|
return ""
|
|
}
|