mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
Add multi-user service for no-2022 aead
This commit is contained in:
parent
1a7c32b4e2
commit
39baf9c17e
4 changed files with 245 additions and 47 deletions
|
@ -14,6 +14,7 @@ import (
|
|||
var (
|
||||
ErrBadKey = E.New("bad key")
|
||||
ErrMissingPassword = E.New("missing password")
|
||||
ErrNoUsers = E.New("no users")
|
||||
)
|
||||
|
||||
type Method interface {
|
||||
|
@ -31,6 +32,15 @@ type Service interface {
|
|||
E.Handler
|
||||
}
|
||||
|
||||
type MultiService[U comparable] interface {
|
||||
Name() string
|
||||
UpdateUsers(userList []U, keyList [][]byte) error
|
||||
UpdateUsersWithPasswords(userList []U, passwordList []string) error
|
||||
N.TCPConnectionHandler
|
||||
N.UDPHandler
|
||||
E.Handler
|
||||
}
|
||||
|
||||
type Handler interface {
|
||||
N.TCPConnectionHandler
|
||||
N.UDPConnectionHandler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue