2020-09-27 03:23:58 -04:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2021-07-03 23:01:58 -04:00
|
|
|
|
|
|
|
"github.com/Masterminds/semver"
|
2020-09-27 03:23:58 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type runInfo struct {
|
|
|
|
TimeStarted time.Time
|
|
|
|
Pid int
|
|
|
|
}
|
2021-07-03 23:01:58 -04:00
|
|
|
|
|
|
|
type SshVerInfo struct {
|
|
|
|
Major uint
|
|
|
|
Minor uint
|
|
|
|
Patch uint
|
|
|
|
Raw string
|
|
|
|
SemVer semver.Version
|
|
|
|
SslInfo OpenSslInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type OpenSslInfo struct {
|
|
|
|
Major uint
|
|
|
|
Minor uint
|
|
|
|
Patch uint
|
|
|
|
Revision string
|
|
|
|
BuildDate time.Time
|
|
|
|
Raw string
|
|
|
|
SemVer semver.Version
|
|
|
|
}
|