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

« back to all changes in this revision

Viewing changes to lib/lacp.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:
39
39
 
40
40
void lacp_init(void);
41
41
struct lacp *lacp_create(void);
42
 
void lacp_destroy(struct lacp *);
 
42
void lacp_unref(struct lacp *);
 
43
struct lacp *lacp_ref(const struct lacp *);
43
44
 
44
45
void lacp_configure(struct lacp *, const struct lacp_settings *);
45
46
bool lacp_is_active(const struct lacp *);
60
61
void lacp_slave_unregister(struct lacp *, const void *slave);
61
62
void lacp_slave_carrier_changed(const struct lacp *, const void *slave);
62
63
bool lacp_slave_may_enable(const struct lacp *, const void *slave);
63
 
uint16_t lacp_slave_get_port_id(const struct lacp *, const void *slave);
64
64
bool lacp_slave_is_current(const struct lacp *, const void *slave_);
65
65
 
66
66
/* Callback function for lacp_run() for sending a LACP PDU. */