mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 20:37:44 +03:00
Replace fmt usage
This commit is contained in:
parent
a4a11dea4c
commit
26575402e0
1 changed files with 3 additions and 3 deletions
|
@ -3,11 +3,11 @@ package shadowsocks
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"fmt"
|
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
F "github.com/sagernet/sing/common/format"
|
||||||
M "github.com/sagernet/sing/common/metadata"
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
N "github.com/sagernet/sing/common/network"
|
N "github.com/sagernet/sing/common/network"
|
||||||
)
|
)
|
||||||
|
@ -59,7 +59,7 @@ func (e *ServerConnError) Unwrap() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *ServerConnError) Error() string {
|
func (e *ServerConnError) Error() string {
|
||||||
return fmt.Sprint("shadowsocks: serve TCP from ", e.Source, ": ", e.Cause)
|
return F.ToString("shadowsocks: serve TCP from ", e.Source, ": ", e.Cause)
|
||||||
}
|
}
|
||||||
|
|
||||||
type ServerPacketError struct {
|
type ServerPacketError struct {
|
||||||
|
@ -72,7 +72,7 @@ func (e *ServerPacketError) Unwrap() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *ServerPacketError) Error() string {
|
func (e *ServerPacketError) Error() string {
|
||||||
return fmt.Sprint("shadowsocks: serve UDP from ", e.Source, ": ", e.Cause)
|
return F.ToString("shadowsocks: serve UDP from ", e.Source, ": ", e.Cause)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Key(password []byte, keySize int) []byte {
|
func Key(password []byte, keySize int) []byte {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue