mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
62 lines
1.1 KiB
Go
62 lines
1.1 KiB
Go
package shadowsocks
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
type Service interface {
|
|
M.TCPConnectionHandler
|
|
N.UDPHandler
|
|
}
|
|
|
|
type Handler interface {
|
|
M.TCPConnectionHandler
|
|
N.UDPConnectionHandler
|
|
E.Handler
|
|
}
|
|
|
|
type UserContext[U comparable] struct {
|
|
context.Context
|
|
User U
|
|
}
|
|
|
|
type ServerConnError struct {
|
|
net.Conn
|
|
Source M.Socksaddr
|
|
Cause error
|
|
}
|
|
|
|
func (e *ServerConnError) Close() error {
|
|
if conn, ok := common.Cast[*net.TCPConn](e.Conn); ok {
|
|
conn.SetLinger(0)
|
|
}
|
|
return e.Conn.Close()
|
|
}
|
|
|
|
func (e *ServerConnError) Unwrap() error {
|
|
return e.Cause
|
|
}
|
|
|
|
func (e *ServerConnError) Error() string {
|
|
return fmt.Sprint("shadowsocks: serve TCP from ", e.Source, ": ", e.Cause)
|
|
}
|
|
|
|
type ServerPacketError struct {
|
|
Source M.Socksaddr
|
|
Cause error
|
|
}
|
|
|
|
func (e *ServerPacketError) Unwrap() error {
|
|
return e.Cause
|
|
}
|
|
|
|
func (e *ServerPacketError) Error() string {
|
|
return fmt.Sprint("shadowsocks: serve UDP from ", e.Source, ": ", e.Cause)
|
|
}
|