ofpbuf: New function ofpbuf_push_zeros().
[cascardo/ovs.git] / lib / ofpbuf.c
index 9cb2ceb..1621bcc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010 Nicira Networks.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -219,6 +219,17 @@ ofpbuf_push_uninit(struct ofpbuf *b, size_t size)
     return b->data;
 }
 
+/* Prefixes 'size' zeroed bytes to the head end of 'b'.  'b' must have at least
+ * 'size' bytes of headroom.  Returns a pointer to the first byte of the data's
+ * location in the ofpbuf. */
+void *
+ofpbuf_push_zeros(struct ofpbuf *b, size_t size)
+{
+    void *dst = ofpbuf_push_uninit(b, size);
+    memset(dst, 0, size);
+    return dst;
+}
+
 void *
 ofpbuf_push(struct ofpbuf *b, const void *p, size_t size) 
 {