mirror of
https://github.com/slackhq/nebula.git
synced 2026-05-16 21:07:36 +02:00
13 lines
375 B
Go
13 lines
375 B
Go
package tio
|
|
|
|
import "fmt"
|
|
|
|
// SegmentSuperpacket invokes fn once per segment of pkt.
|
|
// This is a stub implementation that does not actually support segmentation
|
|
func SegmentSuperpacket(pkt Packet, fn func(seg []byte) error) error {
|
|
if pkt.GSO.IsSuperpacket() {
|
|
return fmt.Errorf("tio: GSO superpacket on platform without segmentation support")
|
|
}
|
|
return fn(pkt.Bytes)
|
|
}
|