本文整理匯總了Golang中github.com/ghedo/go/pkt/packet.Packet.Payload方法的典型用法代碼示例。如果您正苦於以下問題:Golang Packet.Payload方法的具體用法?Golang Packet.Payload怎麽用?Golang Packet.Payload使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/ghedo/go/pkt/packet.Packet
的用法示例。
在下文中一共展示了Packet.Payload方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: FindLayer
// Return the first layer of the given type in the packet. If no suitable layer
// is found, return nil.
func FindLayer(p packet.Packet, layer packet.Type) packet.Packet {
switch {
case p == nil:
return nil
case p.GetType() == layer:
return p
default:
return FindLayer(p.Payload(), layer)
}
}
示例2: Answers
func (p *Packet) Answers(other packet.Packet) bool {
if other == nil || other.GetType() != packet.Eth {
return false
}
if p.Type != other.(*Packet).Type {
return false
}
if p.Payload() != nil {
return p.Payload().Answers(other.Payload())
}
return true
}