some refactoring + better recorder

This commit is contained in:
amit bezalel
2017-08-03 01:33:09 +03:00
parent aaa1ab310f
commit 8a510da111
16 changed files with 242 additions and 156 deletions

View File

@@ -6,6 +6,7 @@ type SessionType int
const (
SessionStatusInit SessionStatus = iota
SessionStatusActive
SessionStatusError
)
const (
@@ -21,4 +22,5 @@ type VncSession struct {
ID string
Status SessionStatus
Type SessionType
ReplayFilePath string
}