X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fpktbuf.h;h=eb1b1fff3158cb3ef055cd8a9b13698f08db0465;hb=HEAD;hp=b27b7490a41b67d40e6d3ad7c8784380c0f0a766;hpb=baa905d36b831881ceb20686f567dead3ec0bf14;p=sliver-openvswitch.git diff --git a/ofproto/pktbuf.h b/ofproto/pktbuf.h index b27b7490a..eb1b1fff3 100644 --- a/ofproto/pktbuf.h +++ b/ofproto/pktbuf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 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. @@ -17,8 +17,11 @@ #ifndef PKTBUF_H #define PKTBUF_H 1 +#include #include +#include "ofp-errors.h" + struct pktbuf; struct ofpbuf; @@ -26,9 +29,13 @@ int pktbuf_capacity(void); struct pktbuf *pktbuf_create(void); void pktbuf_destroy(struct pktbuf *); -uint32_t pktbuf_save(struct pktbuf *, struct ofpbuf *buffer, uint16_t in_port); -int pktbuf_retrieve(struct pktbuf *, uint32_t id, struct ofpbuf **bufferp, - uint16_t *in_port); +uint32_t pktbuf_save(struct pktbuf *, const void *buffer, size_t buffer_size, + ofp_port_t in_port); +uint32_t pktbuf_get_null(void); +enum ofperr pktbuf_retrieve(struct pktbuf *, uint32_t id, + struct ofpbuf **bufferp, ofp_port_t *in_port); void pktbuf_discard(struct pktbuf *, uint32_t id); +unsigned int pktbuf_count_packets(const struct pktbuf *); + #endif /* pktbuf.h */