mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-04 12:27:40 +03:00
Init commit
This commit is contained in:
commit
b8acf3f145
22 changed files with 2021 additions and 0 deletions
36
server_default.go
Normal file
36
server_default.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
package mux
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net"
|
||||
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
"github.com/sagernet/sing/common/logger"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
)
|
||||
|
||||
func HandleConnectionDefault(ctx context.Context, conn net.Conn) error {
|
||||
return HandleConnection(ctx, (*defaultServerHandler)(nil), logger.NOP(), conn, M.Metadata{})
|
||||
}
|
||||
|
||||
type defaultServerHandler struct{}
|
||||
|
||||
func (h *defaultServerHandler) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
||||
remoteConn, err := N.SystemDialer.DialContext(ctx, N.NetworkTCP, metadata.Destination)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return bufio.CopyConn(ctx, conn, remoteConn)
|
||||
}
|
||||
|
||||
func (h *defaultServerHandler) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata M.Metadata) error {
|
||||
remoteConn, err := N.SystemDialer.ListenPacket(ctx, metadata.Destination)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return bufio.CopyPacketConn(ctx, conn, bufio.NewPacketConn(remoteConn))
|
||||
}
|
||||
|
||||
func (h *defaultServerHandler) NewError(ctx context.Context, err error) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue