()
| 554 | return p.application |
| 555 | } |
| 556 | func (p *lazyPacket) ErrorLayer() ErrorLayer { |
| 557 | for p.failure == nil && p.next != nil { |
| 558 | p.decodeNextLayer() |
| 559 | } |
| 560 | return p.failure |
| 561 | } |
| 562 | func (p *lazyPacket) Layers() []Layer { |
| 563 | for p.next != nil { |
| 564 | p.decodeNextLayer() |
nothing calls this directly
no test coverage detected