blob: d73d2ca8746728ca6bc58e0156cc05539383ce72 [file] [log] [blame]
package core
import (
"context"
"github.com/google/gopacket"
)
type PonSimInterface interface {
Start(context.Context)
Stop(context.Context)
GetAddress() string
GetPort() int32
Forward(context.Context, int, gopacket.Packet) error
}