X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fpinsched.h;h=061cb01a090eba2dd002e1e60d511348fd825f75;hb=3444fdfb453d3593914cf1e18f9ac2f8b036e986;hp=aead7a4595489caf9a6f2aae8e0c7f4ee3bbb3f4;hpb=8fef8c7121222233075a03d57db7e0b48d5f6be5;p=sliver-openvswitch.git diff --git a/ofproto/pinsched.h b/ofproto/pinsched.h index aead7a459..061cb01a0 100644 --- a/ofproto/pinsched.h +++ b/ofproto/pinsched.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 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. @@ -20,11 +20,11 @@ #include struct ofpbuf; -struct switch_status; typedef void pinsched_tx_cb(struct ofpbuf *, void *aux); -struct pinsched *pinsched_create(int rate_limit, int burst_limit, - struct switch_status *); +struct pinsched *pinsched_create(int rate_limit, int burst_limit); +void pinsched_get_limits(const struct pinsched *, + int *rate_limit, int *burst_limit); void pinsched_set_limits(struct pinsched *, int rate_limit, int burst_limit); void pinsched_destroy(struct pinsched *); void pinsched_send(struct pinsched *, uint16_t port_no, struct ofpbuf *, @@ -32,4 +32,6 @@ void pinsched_send(struct pinsched *, uint16_t port_no, struct ofpbuf *, void pinsched_run(struct pinsched *, pinsched_tx_cb *, void *aux); void pinsched_wait(struct pinsched *); +unsigned int pinsched_count_txqlen(const struct pinsched *); + #endif /* pinsched.h */