(connIndex uint8, protocol Protocol, location string, edgeAddress net.IP)
| 72 | } |
| 73 | |
| 74 | func (o *Observer) sendConnectedEvent(connIndex uint8, protocol Protocol, location string, edgeAddress net.IP) { |
| 75 | o.sendEvent(Event{Index: connIndex, EventType: Connected, Protocol: protocol, Location: location, EdgeAddress: edgeAddress}) |
| 76 | } |
| 77 | |
| 78 | func (o *Observer) SendURL(url string) { |
| 79 | o.sendEvent(Event{EventType: SetURL, URL: url}) |
no test coverage detected