X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Frconn.c;h=1301f25cac2822a427c689ef8f9b4c2634fe9601;hb=3c303e5fe1061b8715be018ae8e535cbc24303c9;hp=b18a2e59e918c3d4373b3a4e19a0bcf55b6e6af6;hpb=7df824b7b2aa6c8ab54af3193add82d6ed940785;p=openvswitch diff --git a/lib/rconn.c b/lib/rconn.c index b18a2e59..1301f25c 100644 --- a/lib/rconn.c +++ b/lib/rconn.c @@ -638,9 +638,34 @@ rconn_failure_duration(const struct rconn *rconn) /* Returns the IP address of the peer, or 0 if the peer is not connected over * an IP-based protocol or if its IP address is not known. */ uint32_t -rconn_get_ip(const struct rconn *rconn) +rconn_get_remote_ip(const struct rconn *rconn) { - return rconn->vconn ? vconn_get_ip(rconn->vconn) : 0; + return rconn->vconn ? vconn_get_remote_ip(rconn->vconn) : 0; +} + +/* Returns the transport port of the peer, or 0 if the peer does not + * contain a port or if the port is not known. */ +uint16_t +rconn_get_remote_port(const struct rconn *rconn) +{ + return rconn->vconn ? vconn_get_remote_port(rconn->vconn) : 0; +} + +/* Returns the IP address used to connect to the peer, or 0 if the + * connection is not an IP-based protocol or if its IP address is not + * known. */ +uint32_t +rconn_get_local_ip(const struct rconn *rconn) +{ + return rconn->vconn ? vconn_get_local_ip(rconn->vconn) : 0; +} + +/* Returns the transport port used to connect to the peer, or 0 if the + * connection does not contain a port or if the port is not known. */ +uint16_t +rconn_get_local_port(const struct rconn *rconn) +{ + return rconn->vconn ? vconn_get_local_port(rconn->vconn) : 0; } /* If 'rconn' can't connect to the peer, it could be for any number of reasons.