X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fpinsched.h;h=8cce1f2362a5d31f2283f2bc64f8a1ae44677c7b;hb=HEAD;hp=06b22f4417645a3f3217adda013975b98f3acdbb;hpb=85606e05b691be7c2f2d4bcf0e91170b71ec8fbb;p=sliver-openvswitch.git diff --git a/ofproto/pinsched.h b/ofproto/pinsched.h index 06b22f441..8cce1f236 100644 --- a/ofproto/pinsched.h +++ b/ofproto/pinsched.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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,17 +20,17 @@ #include #include "flow.h" +struct list; struct ofpbuf; -typedef void pinsched_tx_cb(struct ofpbuf *, void *aux); 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 *, ofp_port_t port_no, struct ofpbuf *, - pinsched_tx_cb *, void *aux); -void pinsched_run(struct pinsched *, pinsched_tx_cb *, void *aux); + struct list *txq); +void pinsched_run(struct pinsched *, struct list *txq); void pinsched_wait(struct pinsched *); unsigned int pinsched_count_txqlen(const struct pinsched *);