Projects STRLCPY reverse_ssh Commits 417d29c2
🤬
  • ■ ■ ■ ■
    internal/server/commands/watch.go
    skipped 24 lines
    25 25   arrowDirection = "->"
    26 26   }
    27 27   
    28  - messages <- fmt.Sprintf("%s %s %s (%s %s) %s %s", c.Timestamp.Format("2006/01/02 15:04:05"), arrowDirection, c.HostName, c.IP, c.ID, c.Status, c.Version)
     28 + messages <- fmt.Sprintf("%s %s %s (%s %s) %s %s", c.Timestamp.Format("2006/01/02 15:04:05"), arrowDirection, c.HostName, c.IP, c.ID, c.Version, c.Status)
    29 29   
    30 30   })
    31 31   
    skipped 42 lines
  • ■ ■ ■ ■
    internal/server/observers/observers.go
    skipped 17 lines
    18 18  }
    19 19   
    20 20  func (cs ClientState) Summary() string {
    21  - return fmt.Sprintf("%s (%s) %s %s", cs.HostName, cs.ID, cs.Status, cs.Version)
     21 + return fmt.Sprintf("%s (%s) %s %s", cs.HostName, cs.ID, cs.Version, cs.Status)
    22 22  }
    23 23   
    24 24  func (cs ClientState) Json() ([]byte, error) {
    skipped 5 lines
Please wait...
Page is in error, reload to recover