(e *encoder)
| 338 | func (r *infoDescription) code() uint32 { return cRepInfo } |
| 339 | |
| 340 | func (r *infoDescription) encode(e *encoder) { |
| 341 | e.writeUint16(cInfoDescription) |
| 342 | e.writeString(r.description) |
| 343 | } |
| 344 | |
| 345 | func (r *infoDescription) decode(e *encoder, l uint32) { |
| 346 | if l > (4 << 10) { |
nothing calls this directly
no test coverage detected