A TimeExceeded represents an ICMP time exceeded message body.
| 12 | |
| 13 | // A TimeExceeded represents an ICMP time exceeded message body. |
| 14 | type TimeExceeded struct { |
| 15 | Data []byte // data, known as original datagram field |
| 16 | Extensions []Extension // extensions |
| 17 | } |
| 18 | |
| 19 | // Len implements the Len method of MessageBody interface. |
| 20 | func (p *TimeExceeded) Len(proto int) int { |
nothing calls this directly
no outgoing calls
no test coverage detected