new: added new Meta field to Endpoint objects (closes #66)

This commit is contained in:
evilsocket 2018-02-22 18:41:04 +01:00
commit 02d414107e
3 changed files with 48 additions and 3 deletions

View file

@ -41,7 +41,7 @@ func (s EventsStream) viewApEvent(e session.Event) {
fmt.Printf("[%s] [%s] %s\n",
e.Time.Format(eventTimeFormat),
core.Green(e.Tag),
ap)
ap.String())
}
}
@ -75,7 +75,7 @@ func (s EventsStream) viewEndpointEvent(e session.Event) {
fmt.Printf("[%s] [%s] %s\n",
e.Time.Format(eventTimeFormat),
core.Green(e.Tag),
t)
t.String())
}
}