Add v2ray user stats api

This commit is contained in:
世界 2023-02-08 16:50:15 +08:00
parent 7ea9d48987
commit 39514b3ca0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 39 additions and 8 deletions

View file

@ -45,6 +45,6 @@ type V2RayServer interface {
}
type V2RayStatsService interface {
RoutedConnection(inbound string, outbound string, conn net.Conn) net.Conn
RoutedPacketConnection(inbound string, outbound string, conn N.PacketConn) N.PacketConn
RoutedConnection(inbound string, outbound string, user string, conn net.Conn) net.Conn
RoutedPacketConnection(inbound string, outbound string, user string, conn N.PacketConn) N.PacketConn
}