mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
20 lines
331 B
Go
20 lines
331 B
Go
package metadata
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
)
|
|
|
|
type Metadata struct {
|
|
Source *AddrPort
|
|
Destination *AddrPort
|
|
}
|
|
|
|
type TCPConnectionHandler interface {
|
|
NewConnection(conn net.Conn, metadata Metadata) error
|
|
}
|
|
|
|
type UDPHandler interface {
|
|
NewPacket(packet *buf.Buffer, metadata Metadata) error
|
|
}
|