| 198 | } |
| 199 | |
| 200 | type optionReply interface { |
| 201 | code() uint32 |
| 202 | encode(*encoder) |
| 203 | decode(*encoder, uint32) |
| 204 | } |
| 205 | |
| 206 | func encodeReply(e *encoder, option uint32, reply optionReply) { |
| 207 | e.writeUint64(repMagic) |
no outgoing calls
no test coverage detected