EdgedConnection indicate the connection request to the edged
| 4 | |
| 5 | // EdgedConnection indicate the connection request to the edged |
| 6 | type EdgedConnection interface { |
| 7 | CreateConnectMessage() (*Message, error) |
| 8 | Serve(tunnel SafeWriteTunneler) error |
| 9 | CacheTunnelMessage(msg *Message) |
| 10 | GetMessageID() uint64 |
| 11 | CloseReadChannel() |
| 12 | CleanChannel() |
| 13 | fmt.Stringer |
| 14 | } |
no outgoing calls
no test coverage detected