Stack interface implement ip protocol stack, bridging raw network packets and data streams
| 6 | |
| 7 | // Stack interface implement ip protocol stack, bridging raw network packets and data streams |
| 8 | type Stack interface { |
| 9 | Start() error |
| 10 | Close() error |
| 11 | } |
| 12 | |
| 13 | // StackOptions for the stack implementation |
| 14 | type StackOptions struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…