~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to ofproto/pinsched.h

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#define PINSCHED_H_H 1
19
19
 
20
20
#include <stdint.h>
 
21
#include "flow.h"
21
22
 
22
23
struct ofpbuf;
23
24
 
27
28
                         int *rate_limit, int *burst_limit);
28
29
void pinsched_set_limits(struct pinsched *, int rate_limit, int burst_limit);
29
30
void pinsched_destroy(struct pinsched *);
30
 
void pinsched_send(struct pinsched *, uint16_t port_no, struct ofpbuf *,
 
31
void pinsched_send(struct pinsched *, ofp_port_t port_no, struct ofpbuf *,
31
32
                   pinsched_tx_cb *, void *aux);
32
33
void pinsched_run(struct pinsched *, pinsched_tx_cb *, void *aux);
33
34
void pinsched_wait(struct pinsched *);