Connection now needs explicit Start()

This commit is contained in:
Jakob Borg
2015-07-10 16:34:54 +10:00
parent 9dd6f848bd
commit b05c1a5bb9
3 changed files with 21 additions and 2 deletions

View File

@@ -12,6 +12,10 @@ type wireFormatConnection struct {
next Connection
}
func (c wireFormatConnection) Start() {
c.next.Start()
}
func (c wireFormatConnection) ID() DeviceID {
return c.next.ID()
}