make room in the buffer and move the pointer forward */
| 138 | |
| 139 | /* make room in the buffer and move the pointer forward */ |
| 140 | static void * |
| 141 | o_next(struct dn_id **o, int len, int type) |
| 142 | { |
| 143 | struct dn_id *ret = *o; |
| 144 | oid_fill(ret, len, type, 0); |
| 145 | *o = O_NEXT(*o, len); |
| 146 | return ret; |
| 147 | } |
| 148 | |
| 149 | #ifdef NEW_AQM |
| 150 |
no test coverage detected