mirror of
https://github.com/daeuniverse/dae.git
synced 2024-12-22 20:14:40 +07:00
26 lines
366 B
Go
26 lines
366 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) 2022-2024, daeuniverse Organization <dae@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 ""
|
|
}
|