X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbfd.h;h=039b4dd9606c7322111de4180a228f161a65c4dd;hb=88bf179aa3f3fa89822edcd9b882e0f06d39bf08;hp=21203b389c9a369d77532dcdcbcf113db6d034fb;hpb=ccc096898c4618e8869a7696b40ca7f17e8b9560;p=sliver-openvswitch.git diff --git a/lib/bfd.h b/lib/bfd.h index 21203b389..039b4dd96 100644 --- a/lib/bfd.h +++ b/lib/bfd.h @@ -22,7 +22,10 @@ #include struct bfd; +struct dpif_flow_stats; struct flow; +struct flow_wildcards; +struct netdev; struct ofpbuf; struct smap; @@ -33,14 +36,21 @@ bool bfd_should_send_packet(const struct bfd *); void bfd_put_packet(struct bfd *bfd, struct ofpbuf *packet, uint8_t eth_src[6]); -bool bfd_should_process_flow(const struct flow *); +bool bfd_should_process_flow(const struct bfd *, const struct flow *, + struct flow_wildcards *); void bfd_process_packet(struct bfd *, const struct flow *, const struct ofpbuf *); struct bfd *bfd_configure(struct bfd *, const char *name, - const struct smap *smap); - -bool bfd_forwarding(const struct bfd *); + const struct smap *smap, + struct netdev *netdev); +struct bfd *bfd_ref(const struct bfd *); +void bfd_unref(struct bfd *); + +void bfd_account_rx(struct bfd *, const struct dpif_flow_stats *); +bool bfd_forwarding(struct bfd *); +bool bfd_check_status_change(struct bfd *); void bfd_get_status(const struct bfd *, struct smap *); - +void bfd_set_netdev(struct bfd *, const struct netdev *); +long long int bfd_wake_time(const struct bfd *); #endif /* bfd.h */