mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
385 B
29 lines
385 B
package event
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/fatedier/frp/pkg/msg"
|
|
)
|
|
|
|
type Type int
|
|
|
|
const (
|
|
EvStartProxy Type = iota
|
|
EvCloseProxy
|
|
)
|
|
|
|
var (
|
|
ErrPayloadType = errors.New("error payload type")
|
|
)
|
|
|
|
type Handler func(evType Type, payload interface{}) error
|
|
|
|
type StartProxyPayload struct {
|
|
NewProxyMsg *msg.NewProxy
|
|
}
|
|
|
|
type CloseProxyPayload struct {
|
|
CloseProxyMsg *msg.CloseProxy
|
|
}
|