X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fofpbuf.h;h=259e703cf5c79cad90bf58af25877c914610949f;hb=da0603cf278a9f505dc2988602ec0071c771dd2e;hp=06083ae34cdeef608427808bc5eb9be561df4492;hpb=a14bc59fb8f27db193d74662dc9c5cb8237177ef;p=openvswitch diff --git a/lib/ofpbuf.h b/lib/ofpbuf.h index 06083ae3..259e703c 100644 --- a/lib/ofpbuf.h +++ b/lib/ofpbuf.h @@ -19,6 +19,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + /* Buffer for holding arbitrary data. An ofpbuf is automatically reallocated * as necessary if it grows too large for the available memory. */ struct ofpbuf { @@ -34,7 +38,7 @@ struct ofpbuf { void *l7; /* Application data. */ struct ofpbuf *next; /* Next in a list of ofpbufs. */ - void *private; /* Private pointer for use by owner. */ + void *private_p; /* Private pointer for use by owner. */ }; void ofpbuf_use(struct ofpbuf *, void *, size_t); @@ -70,4 +74,8 @@ void ofpbuf_clear(struct ofpbuf *); void *ofpbuf_pull(struct ofpbuf *, size_t); void *ofpbuf_try_pull(struct ofpbuf *, size_t); +#ifdef __cplusplus +} +#endif + #endif /* ofpbuf.h */