()
| 548 | return p.transport |
| 549 | } |
| 550 | func (p *lazyPacket) ApplicationLayer() ApplicationLayer { |
| 551 | for p.application == nil && p.next != nil { |
| 552 | p.decodeNextLayer() |
| 553 | } |
| 554 | return p.application |
| 555 | } |
| 556 | func (p *lazyPacket) ErrorLayer() ErrorLayer { |
| 557 | for p.failure == nil && p.next != nil { |
| 558 | p.decodeNextLayer() |
nothing calls this directly
no test coverage detected