Added SocketDestroy function.

This commit is contained in:
frei-0xff
2022-05-18 14:42:13 +03:00
committed by Alessandro Boch
parent aafe841692
commit 3e28e6db88
4 changed files with 71 additions and 0 deletions

View File

@@ -283,3 +283,7 @@ func NeighDeserialize(m []byte) (*Neigh, error) {
func SocketGet(local, remote net.Addr) (*Socket, error) {
return nil, ErrNotImplemented
}
func SocketDestroy(local, remote net.Addr) (*Socket, error) {
return nil, ErrNotImplemented
}