2021-10-21 10:36:01 +00:00
|
|
|
package ssh
|
2021-04-10 05:58:01 +00:00
|
|
|
|
|
|
|
type ActionType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ActionTypeLogPassword ActionType = iota
|
|
|
|
ActionTypeLogPasswordSlow
|
|
|
|
ActionTypeLogCommandAndExit
|
|
|
|
ActionTypeSendGarbage
|
|
|
|
)
|
|
|
|
const ActionTypeDefault ActionType = ActionTypeLogPassword
|