X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frconn.h;h=ef4e16c8b903b0ce02fc666eee56c9053083b566;hb=ef5925df6af03cf47a4931539016715f6ac3f661;hp=f9cbe706781e9a34bebdad06c5537282e56e6c71;hpb=a14bc59fb8f27db193d74662dc9c5cb8237177ef;p=sliver-openvswitch.git diff --git a/lib/rconn.h b/lib/rconn.h index f9cbe7067..ef4e16c8b 100644 --- a/lib/rconn.h +++ b/lib/rconn.h @@ -69,15 +69,20 @@ void rconn_add_monitor(struct rconn *, struct vconn *); const char *rconn_get_name(const struct rconn *); bool rconn_is_alive(const struct rconn *); bool rconn_is_connected(const struct rconn *); +bool rconn_is_admitted(const struct rconn *); int rconn_failure_duration(const struct rconn *); bool rconn_is_connectivity_questionable(struct rconn *); -uint32_t rconn_get_ip(const struct rconn *); +uint32_t rconn_get_remote_ip(const struct rconn *); +uint16_t rconn_get_remote_port(const struct rconn *); +uint32_t rconn_get_local_ip(const struct rconn *); +uint16_t rconn_get_local_port(const struct rconn *); const char *rconn_get_state(const struct rconn *); unsigned int rconn_get_attempted_connections(const struct rconn *); unsigned int rconn_get_successful_connections(const struct rconn *); time_t rconn_get_last_connection(const struct rconn *); +time_t rconn_get_last_received(const struct rconn *); time_t rconn_get_creation_time(const struct rconn *); unsigned long int rconn_get_total_time_connected(const struct rconn *); int rconn_get_backoff(const struct rconn *);