Fix error message

This commit is contained in:
世界 2022-04-08 11:13:15 +08:00
parent 26e13e7beb
commit 5bf1157e5a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 24 additions and 10 deletions

View file

@ -53,7 +53,7 @@ func MainCmd() *cobra.Command {
Short: "shadowsocks client as socks5 proxy, sing port", Short: "shadowsocks client as socks5 proxy, sing port",
Version: sing.Version, Version: sing.Version,
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
Run(flags) Run(cmd, flags)
}, },
} }
@ -162,7 +162,7 @@ func NewLocalClient(flags *Flags) (*LocalClient, error) {
shadowClient, err := shadowsocks.NewClient(dialer, clientConfig) shadowClient, err := shadowsocks.NewClient(dialer, clientConfig)
if err != nil { if err != nil {
return nil, exceptions.Cause(err, "create shadowsocks") return nil, err
} }
client := &LocalClient{ client := &LocalClient{
@ -220,10 +220,12 @@ func (c *LocalClient) NewPacketConnection(conn socks.PacketConn, addr socksaddr.
}) })
} }
func Run(flags *Flags) { func Run(cmd *cobra.Command, flags *Flags) {
client, err := NewLocalClient(flags) client, err := NewLocalClient(flags)
if err != nil { if err != nil {
logrus.Fatal(err) logrus.StandardLogger().Log(logrus.FatalLevel, err, "\n\n")
cmd.Help()
os.Exit(1)
} }
err = client.Start() err = client.Start()
if err != nil { if err != nil {

View file

@ -2,7 +2,6 @@ package shadowsocks
import ( import (
"context" "context"
"github.com/sagernet/sing/protocol/socks"
"io" "io"
"net" "net"
"strconv" "strconv"
@ -12,6 +11,7 @@ import (
"github.com/sagernet/sing/common/exceptions" "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/rw" "github.com/sagernet/sing/common/rw"
"github.com/sagernet/sing/common/socksaddr" "github.com/sagernet/sing/common/socksaddr"
"github.com/sagernet/sing/protocol/socks"
) )
var ( var (
@ -35,6 +35,16 @@ type Client struct {
} }
func NewClient(dialer *net.Dialer, config *ClientConfig) (*Client, error) { func NewClient(dialer *net.Dialer, config *ClientConfig) (*Client, error) {
if config.Server == "" {
return nil, exceptions.New("missing server address")
}
if config.ServerPort == 0 {
return nil, exceptions.New("missing server port")
}
if config.Method == "" {
return nil, exceptions.New("missing server method")
}
cipher, err := CreateCipher(config.Method) cipher, err := CreateCipher(config.Method)
if err != nil { if err != nil {
return nil, err return nil, err

View file

@ -1,11 +1,12 @@
package socks package socks
import ( import (
"net"
"time"
"github.com/sagernet/sing/common" "github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/buf" "github.com/sagernet/sing/common/buf"
"github.com/sagernet/sing/common/socksaddr" "github.com/sagernet/sing/common/socksaddr"
"net"
"time"
) )
type PacketConn interface { type PacketConn interface {

View file

@ -1,13 +1,14 @@
package system package system
import ( import (
"io"
"net"
"net/netip"
"github.com/sagernet/sing/common" "github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/exceptions" "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/socksaddr" "github.com/sagernet/sing/common/socksaddr"
"github.com/sagernet/sing/protocol/socks" "github.com/sagernet/sing/protocol/socks"
"io"
"net"
"net/netip"
) )
type SocksHandler interface { type SocksHandler interface {