mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-07 15:20:40 +00:00
39 lines
764 B
Go
39 lines
764 B
Go
package server
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
type statusUpdate struct {
|
|
UID []byte
|
|
active bool
|
|
numSession int
|
|
|
|
upUsage int64
|
|
downUsage int64
|
|
timestamp int64
|
|
}
|
|
|
|
type statusResponse struct {
|
|
UID []byte
|
|
action int
|
|
message string
|
|
}
|
|
|
|
const (
|
|
TERMINATE = iota + 1
|
|
)
|
|
|
|
var ErrUserNotFound = errors.New("UID does not correspond to a user")
|
|
var ErrSessionsCapReached = errors.New("Sessions cap has reached")
|
|
|
|
var ErrNoUpCredit = errors.New("No upload credit left")
|
|
var ErrNoDownCredit = errors.New("No download credit left")
|
|
var ErrUserExpired = errors.New("User has expired")
|
|
|
|
type UserManager interface {
|
|
authenticateUser([]byte) (int64, int64, error)
|
|
authoriseNewSession(*ActiveUser) error
|
|
uploadStatus([]statusUpdate) ([]statusResponse, error)
|
|
}
|