feat(bsr): add summary unavailable error

pull/3251/head
irenarindos 3 years ago committed by Timothy Messier
parent 95c3b2d56a
commit 2ba780703f
No known key found for this signature in database
GPG Key ID: EFD2F184F7600572

@ -19,3 +19,6 @@ var ErrNotSupported = errors.New("not supported by protocol")
// ErrBsrKeyPersistenceFailure indicates a failure in persisting BSR encryption keys
var ErrBsrKeyPersistenceFailure = errors.New("could not persist BSR keys")
// ErrSummaryUnavailable indicates a BSR summary is unavailable
var ErrSummaryUnavailable = errors.New("summary not available")

@ -13,6 +13,7 @@ type (
ConnectionCount uint64
StartTime time.Time
EndTime time.Time
Errors error
}
// ConnectionSummary encapsulates data for a connection, including its connection id, channel count,

Loading…
Cancel
Save