mirror of
https://github.com/openvswitch/ovs
synced 2025-10-17 14:28:02 +00:00
openflow: Make stats replies more like other OpenFlow messages.
This commit is contained in:
10
lib/ofpbuf.c
10
lib/ofpbuf.c
@@ -289,6 +289,16 @@ ofpbuf_trim(struct ofpbuf *b)
|
||||
}
|
||||
}
|
||||
|
||||
/* If 'b' is shorter than 'length' bytes, pads its tail out with zeros to that
|
||||
* length. */
|
||||
void
|
||||
ofpbuf_padto(struct ofpbuf *b, size_t length)
|
||||
{
|
||||
if (b->size < length) {
|
||||
ofpbuf_put_zeros(b, length - b->size);
|
||||
}
|
||||
}
|
||||
|
||||
/* Appends 'size' bytes of data to the tail end of 'b', reallocating and
|
||||
* copying its data if necessary. Returns a pointer to the first byte of the
|
||||
* new data, which is left uninitialized. */
|
||||
|
Reference in New Issue
Block a user