add link status

This commit is contained in:
Asim Aslam 2019-09-11 12:12:11 -07:00
parent 63d535aea9
commit cb0de43dba

View File

@ -45,6 +45,8 @@ type Tunnel interface {
type Link interface {
// The id of the link
Id() string
// Status of the link e.g connected/closed
Status() string
// honours transport socket
transport.Socket
}