X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ofproto%2Fstatus.c;h=7fe23787a943dfdfdfdbd2961c0698d71df87e24;hb=eb15cdbbea5d8193af63bd2de948b99af30e648f;hp=01cda01a1f498f0cf3beb682ed151a54236bfbb0;hpb=02dd3123a0e312f1d33403e744af52dd6096f12d;p=openvswitch diff --git a/ofproto/status.c b/ofproto/status.c index 01cda01a..7fe23787 100644 --- a/ofproto/status.c +++ b/ofproto/status.c @@ -97,7 +97,7 @@ rconn_status_cb(struct status_reply *sr, void *rconn_) uint32_t remote_ip = rconn_get_remote_ip(rconn); uint32_t local_ip = rconn_get_local_ip(rconn); - status_reply_put(sr, "name=%s", rconn_get_name(rconn)); + status_reply_put(sr, "name=%s", rconn_get_target(rconn)); if (remote_ip) { status_reply_put(sr, "remote-ip="IP_FMT, IP_ARGS(&remote_ip)); status_reply_put(sr, "remote-port=%d", @@ -132,7 +132,6 @@ config_status_cb(struct status_reply *sr, void *ofproto_) const struct ofproto *ofproto = ofproto_; uint64_t datapath_id; struct svec listeners; - int probe_interval, max_backoff; size_t i; datapath_id = ofproto_get_datapath_id(ofproto); @@ -146,16 +145,6 @@ config_status_cb(struct status_reply *sr, void *ofproto_) status_reply_put(sr, "management%zu=%s", i, listeners.names[i]); } svec_destroy(&listeners); - - probe_interval = ofproto_get_probe_interval(ofproto); - if (probe_interval) { - status_reply_put(sr, "probe-interval=%d", probe_interval); - } - - max_backoff = ofproto_get_max_backoff(ofproto); - if (max_backoff) { - status_reply_put(sr, "max-backoff=%d", max_backoff); - } } static void