endpoint: Drop packets to non-IP destinations

This commit is contained in:
世界
2026-08-30 17:41:47 +08:00
parent 673485755c
commit be54f9afef
6 changed files with 131 additions and 15 deletions
+8 -3
View File
@@ -15,6 +15,7 @@ import (
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/adapter/endpoint"
"github.com/sagernet/sing-box/common/dialer"
"github.com/sagernet/sing-box/common/iponly"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
@@ -587,16 +588,20 @@ func (e *Endpoint) ListenPacketWithDestination(ctx context.Context, destination
if err != nil {
return nil, netip.Addr{}, err
}
return N.ListenSerial(ctx, e.device, destination, destinationAddresses)
packetConn, destinationAddress, err := N.ListenSerial(ctx, e.device, destination, destinationAddresses)
if err != nil {
return nil, netip.Addr{}, err
}
return iponly.NewPacketConn(e.logger, packetConn), destinationAddress, nil
}
packetConn, err := e.device.ListenPacket(ctx, destination)
if err != nil {
return nil, netip.Addr{}, err
}
if destination.IsIP() {
return packetConn, destination.Addr, nil
return iponly.NewPacketConn(e.logger, packetConn), destination.Addr, nil
}
return packetConn, netip.Addr{}, nil
return iponly.NewPacketConn(e.logger, packetConn), netip.Addr{}, nil
}
func (e *Endpoint) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {