code cleanup

This commit is contained in:
wwqgtxx
2022-11-11 22:48:44 +08:00
parent 68b28ed530
commit 64be213b66
3 changed files with 3 additions and 18 deletions

View File

@ -22,7 +22,7 @@ type Listener struct {
var _listener *Listener
func New(config string, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) (*Listener, error) {
addr, cipher, password, err := parseSSURL(config)
addr, cipher, password, err := ParseSSURL(config)
if err != nil {
return nil, err
}

View File

@ -44,7 +44,7 @@ func (c *packet) InAddr() net.Addr {
return c.pc.LocalAddr()
}
func parseSSURL(s string) (addr, cipher, password string, err error) {
func ParseSSURL(s string) (addr, cipher, password string, err error) {
u, err := url.Parse(s)
if err != nil {
return