瀏覽代碼

interface for secondary id

v2ray 10 年之前
父節點
當前提交
1f584f1502
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      proxy/vmess/user.go

+ 9 - 0
proxy/vmess/user.go

@@ -1,5 +1,9 @@
 package vmess
 
+import (
+	"time"
+)
+
 type UserLevel int
 
 const (
@@ -12,6 +16,11 @@ type User interface {
 	Level() UserLevel
 }
 
+type SecondaryID interface {
+	ID() *ID
+	ValidUntil() time.Time
+}
+
 type UserSettings struct {
 	PayloadReadTimeout int
 }