X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fofpbuf.h;h=bae3c0aee482ee52b6cffdf1ae6f593888fe429c;hb=8d79e6a0202e65b1b64975f1023ccf6b34f89a71;hp=34fcf5f7f956430e753a633ea4a9c118983a98cf;hpb=7ecb095d0bf4940406ce684c5c6d5c7adac4cf77;p=sliver-openvswitch.git diff --git a/lib/ofpbuf.h b/lib/ofpbuf.h index 34fcf5f7f..bae3c0aee 100644 --- a/lib/ofpbuf.h +++ b/lib/ofpbuf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,8 @@ extern "C" { enum ofpbuf_source { OFPBUF_MALLOC, /* Obtained via malloc(). */ - OFPBUF_STACK /* Stack space or static buffer. */ + OFPBUF_STACK, /* Un-movable stack space or static buffer. */ + OFPBUF_STUB /* Starts on stack, may expand into heap. */ }; /* Buffer for holding arbitrary data. An ofpbuf is automatically reallocated @@ -42,6 +43,7 @@ struct ofpbuf { size_t size; /* Number of bytes in use. */ void *l2; /* Link-level header. */ + void *l2_5; /* MPLS label stack */ void *l3; /* Network-level header. */ void *l4; /* Transport-level header. */ void *l7; /* Application data. */ @@ -56,10 +58,12 @@ struct ofpbuf { void ofpbuf_use(struct ofpbuf *, void *, size_t); void ofpbuf_use_stack(struct ofpbuf *, void *, size_t); +void ofpbuf_use_stub(struct ofpbuf *, void *, size_t); void ofpbuf_use_const(struct ofpbuf *, const void *, size_t); void ofpbuf_init(struct ofpbuf *, size_t); void ofpbuf_uninit(struct ofpbuf *); +void *ofpbuf_get_uninit_pointer(struct ofpbuf *); void ofpbuf_reinit(struct ofpbuf *, size_t); struct ofpbuf *ofpbuf_new(size_t); @@ -91,6 +95,7 @@ size_t ofpbuf_tailroom(const struct ofpbuf *); void ofpbuf_prealloc_headroom(struct ofpbuf *, size_t); void ofpbuf_prealloc_tailroom(struct ofpbuf *, size_t); void ofpbuf_trim(struct ofpbuf *); +void ofpbuf_padto(struct ofpbuf *, size_t); void ofpbuf_clear(struct ofpbuf *); void *ofpbuf_pull(struct ofpbuf *, size_t);