diff --git a/holo-bfd/src/northbound/state.rs b/holo-bfd/src/northbound/state.rs index 2ccd3e0b..701a5fa1 100644 --- a/holo-bfd/src/northbound/state.rs +++ b/holo-bfd/src/northbound/state.rs @@ -138,10 +138,12 @@ fn load_callbacks() -> Callbacks { sess.state.remote.as_ref().map(|remote| remote.multiplier) }) .path(bfd::ip_sh::sessions::session::source_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_master, _args| { Some(*network::PORT_SRC_RANGE.start()) }) .path(bfd::ip_sh::sessions::session::dest_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_master, _args| { Some(network::PORT_DST_SINGLE_HOP) }) @@ -332,10 +334,12 @@ fn load_callbacks() -> Callbacks { sess.state.remote.as_ref().map(|remote| remote.multiplier) }) .path(bfd::ip_mh::session_groups::session_group::sessions::source_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_master, _args| { Some(*network::PORT_SRC_RANGE.start()) }) .path(bfd::ip_mh::session_groups::session_group::sessions::dest_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_master, _args| { Some(network::PORT_DST_MULTIHOP) }) diff --git a/holo-bgp/src/northbound/state.rs b/holo-bgp/src/northbound/state.rs index edef805a..91c6aa49 100644 --- a/holo-bgp/src/northbound/state.rs +++ b/holo-bgp/src/northbound/state.rs @@ -166,11 +166,13 @@ fn load_callbacks() -> Callbacks { nbr.conn_info.as_ref().map(|conn_info| conn_info.local_addr) }) .path(bgp::neighbors::neighbor::local_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_instance, args| { let nbr = args.list_entry.as_neighbor().unwrap(); nbr.conn_info.as_ref().map(|conn_info| conn_info.local_port) }) .path(bgp::neighbors::neighbor::remote_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_instance, args| { let nbr = args.list_entry.as_neighbor().unwrap(); nbr.conn_info.as_ref().map(|conn_info| conn_info.remote_port) diff --git a/holo-ldp/src/northbound/state.rs b/holo-ldp/src/northbound/state.rs index 6a7ac940..7b8152ed 100644 --- a/holo-ldp/src/northbound/state.rs +++ b/holo-ldp/src/northbound/state.rs @@ -500,6 +500,7 @@ fn load_callbacks() -> Callbacks { nbr.conn_info.as_ref().map(|conn_info| conn_info.local_addr) }) .path(mpls_ldp::peers::peer::tcp_connection::local_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_instance, args| { let nbr = args.list_entry.as_neighbor().unwrap(); nbr.conn_info.as_ref().map(|conn_info| conn_info.local_port) @@ -510,6 +511,7 @@ fn load_callbacks() -> Callbacks { nbr.conn_info.as_ref().map(|conn_info| conn_info.remote_addr) }) .path(mpls_ldp::peers::peer::tcp_connection::remote_port::PATH) + .attributes(NodeAttributes::PORT_NO) .get_element_u16(|_instance, args| { let nbr = args.list_entry.as_neighbor().unwrap(); nbr.conn_info.as_ref().map(|conn_info| conn_info.remote_port) diff --git a/holo-ldp/tests/conformance/message-addr-withdraw1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-addr-withdraw1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-addr-withdraw1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-addr-withdraw1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-addr-withdraw2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-addr-withdraw2/01-output-northbound-state.json index debd44c6..e375580d 100644 --- a/holo-ldp/tests/conformance/message-addr-withdraw2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-addr-withdraw2/01-output-northbound-state.json @@ -899,9 +899,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -950,9 +948,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1009,9 +1005,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/message-addr1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-addr1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-addr1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-addr1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-addr2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-addr2/01-output-northbound-state.json index debd44c6..e375580d 100644 --- a/holo-ldp/tests/conformance/message-addr2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-addr2/01-output-northbound-state.json @@ -899,9 +899,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -950,9 +948,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1009,9 +1005,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/message-addr2/02-output-northbound-state.json b/holo-ldp/tests/conformance/message-addr2/02-output-northbound-state.json index 4681d98a..b1234ef1 100644 --- a/holo-ldp/tests/conformance/message-addr2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-addr2/02-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-decode-error1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-decode-error1/01-output-northbound-state.json index ce8bb33f..c537cca0 100644 --- a/holo-ldp/tests/conformance/message-decode-error1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-decode-error1/01-output-northbound-state.json @@ -671,9 +671,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -722,9 +720,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/message-hello1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-hello1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-hello1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-hello1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-hello2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-hello2/01-output-northbound-state.json index c00b24ad..26022bf3 100644 --- a/holo-ldp/tests/conformance/message-hello2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-hello2/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1036,9 +1032,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-hello3/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-hello3/01-output-northbound-state.json index c73107f9..2912ce13 100644 --- a/holo-ldp/tests/conformance/message-hello3/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-hello3/01-output-northbound-state.json @@ -731,9 +731,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -790,9 +788,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-init1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-init1/01-output-northbound-state.json index c73107f9..2912ce13 100644 --- a/holo-ldp/tests/conformance/message-init1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-init1/01-output-northbound-state.json @@ -731,9 +731,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -790,9 +788,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-init2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-init2/01-output-northbound-state.json index 52090ff2..43390f59 100644 --- a/holo-ldp/tests/conformance/message-init2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-init2/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -1005,9 +1003,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1064,9 +1060,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-init3/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-init3/01-output-northbound-state.json index f534baec..c1309e24 100644 --- a/holo-ldp/tests/conformance/message-init3/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-init3/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -967,9 +965,7 @@ "session-state": "openrec", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 45000, - "remote-address": "1.1.1.10", - "remote-port": 646 + "remote-address": "1.1.1.10" }, "statistics": { "total-addresses": 0, @@ -1018,9 +1014,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1077,9 +1071,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-label-mapping1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping2/01-output-northbound-state.json index 49a88019..d55ce532 100644 --- a/holo-ldp/tests/conformance/message-label-mapping2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping2/01-output-northbound-state.json @@ -919,9 +919,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -970,9 +968,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1029,9 +1025,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping3/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping3/01-output-northbound-state.json index 6ae6de0f..a354af58 100644 --- a/holo-ldp/tests/conformance/message-label-mapping3/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping3/01-output-northbound-state.json @@ -933,9 +933,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -984,9 +982,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1043,9 +1039,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping3/02-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping3/02-output-northbound-state.json index 1841e3d8..77310bea 100644 --- a/holo-ldp/tests/conformance/message-label-mapping3/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping3/02-output-northbound-state.json @@ -940,9 +940,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -991,9 +989,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1050,9 +1046,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping4/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping4/01-output-northbound-state.json index 40271a1e..c6c28c06 100644 --- a/holo-ldp/tests/conformance/message-label-mapping4/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping4/01-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-mapping5/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-mapping5/01-output-northbound-state.json index ff5f77a7..b068a1af 100644 --- a/holo-ldp/tests/conformance/message-label-mapping5/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-mapping5/01-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-release1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-release1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-label-release1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-release1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-release4/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-release4/01-output-northbound-state.json index 418b6bb7..8a8a3a5f 100644 --- a/holo-ldp/tests/conformance/message-label-release4/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-release4/01-output-northbound-state.json @@ -900,9 +900,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -951,9 +949,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1010,9 +1006,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-release5/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-release5/01-output-northbound-state.json index 341d36d9..f09f9269 100644 --- a/holo-ldp/tests/conformance/message-label-release5/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-release5/01-output-northbound-state.json @@ -809,9 +809,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -860,9 +858,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -919,9 +915,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-request1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-request1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-label-request1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-request1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-withdraw1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-withdraw1/01-output-northbound-state.json index 2b337949..8ce4c706 100644 --- a/holo-ldp/tests/conformance/message-label-withdraw1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-withdraw1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -969,9 +967,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1028,9 +1024,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-withdraw2/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-withdraw2/01-output-northbound-state.json index fb710964..6f3bc29d 100644 --- a/holo-ldp/tests/conformance/message-label-withdraw2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-withdraw2/01-output-northbound-state.json @@ -900,9 +900,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -951,9 +949,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1010,9 +1006,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-withdraw4/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-withdraw4/01-output-northbound-state.json index 343ce446..eb17cc73 100644 --- a/holo-ldp/tests/conformance/message-label-withdraw4/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-withdraw4/01-output-northbound-state.json @@ -900,9 +900,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -951,9 +949,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1010,9 +1006,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-label-withdraw5/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-label-withdraw5/01-output-northbound-state.json index 29316161..43de3355 100644 --- a/holo-ldp/tests/conformance/message-label-withdraw5/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-label-withdraw5/01-output-northbound-state.json @@ -809,9 +809,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -860,9 +858,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -919,9 +915,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/message-notification1/01-output-northbound-state.json b/holo-ldp/tests/conformance/message-notification1/01-output-northbound-state.json index ce8bb33f..c537cca0 100644 --- a/holo-ldp/tests/conformance/message-notification1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/message-notification1/01-output-northbound-state.json @@ -671,9 +671,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -722,9 +720,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/nb-config-hello-accept1/03-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-hello-accept1/03-output-northbound-state.json index 1ba7a549..7561a018 100644 --- a/holo-ldp/tests/conformance/nb-config-hello-accept1/03-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-hello-accept1/03-output-northbound-state.json @@ -929,9 +929,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -980,9 +978,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1039,9 +1035,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-hello-accept2/02-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-hello-accept2/02-output-northbound-state.json index 1ba7a549..7561a018 100644 --- a/holo-ldp/tests/conformance/nb-config-hello-accept2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-hello-accept2/02-output-northbound-state.json @@ -929,9 +929,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -980,9 +978,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1039,9 +1035,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-hello-accept2/03-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-hello-accept2/03-output-northbound-state.json index 4681d98a..b1234ef1 100644 --- a/holo-ldp/tests/conformance/nb-config-hello-accept2/03-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-hello-accept2/03-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled1/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled1/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled1/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/02-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/02-output-northbound-state.json index a38f8f52..492d0ffa 100644 --- a/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-iface-ipv4-enabled2/02-output-northbound-state.json @@ -445,9 +445,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-iface1/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-iface1/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/nb-config-iface1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-iface1/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-iface2/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-iface2/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/nb-config-iface2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-iface2/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/02-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/02-output-northbound-state.json index 1ba7a549..7561a018 100644 --- a/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/02-output-northbound-state.json @@ -929,9 +929,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -980,9 +978,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1039,9 +1035,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/03-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/03-output-northbound-state.json index 4681d98a..b1234ef1 100644 --- a/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/03-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-tnbr-ipv4-enabled1/03-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-tnbr1/03-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-tnbr1/03-output-northbound-state.json index 1ba7a549..7561a018 100644 --- a/holo-ldp/tests/conformance/nb-config-tnbr1/03-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-tnbr1/03-output-northbound-state.json @@ -929,9 +929,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -980,9 +978,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1039,9 +1035,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-tnbr2/02-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-tnbr2/02-output-northbound-state.json index 1ba7a549..7561a018 100644 --- a/holo-ldp/tests/conformance/nb-config-tnbr2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-tnbr2/02-output-northbound-state.json @@ -929,9 +929,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -980,9 +978,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1039,9 +1035,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-config-tnbr2/03-output-northbound-state.json b/holo-ldp/tests/conformance/nb-config-tnbr2/03-output-northbound-state.json index 4681d98a..b1234ef1 100644 --- a/holo-ldp/tests/conformance/nb-config-tnbr2/03-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-config-tnbr2/03-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-rpc-clear-hello-adj2/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-rpc-clear-hello-adj2/01-output-northbound-state.json index 2d634097..581df918 100644 --- a/holo-ldp/tests/conformance/nb-rpc-clear-hello-adj2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-rpc-clear-hello-adj2/01-output-northbound-state.json @@ -684,9 +684,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -743,9 +741,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/nb-rpc-clear-peer2/01-output-northbound-state.json b/holo-ldp/tests/conformance/nb-rpc-clear-peer2/01-output-northbound-state.json index c73107f9..2912ce13 100644 --- a/holo-ldp/tests/conformance/nb-rpc-clear-peer2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/nb-rpc-clear-peer2/01-output-northbound-state.json @@ -731,9 +731,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -790,9 +788,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-addr-add1/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-add1/01-output-northbound-state.json index fbab7ff8..6c1f4e12 100644 --- a/holo-ldp/tests/conformance/sb-addr-add1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-add1/01-output-northbound-state.json @@ -440,9 +440,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, @@ -491,9 +489,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-addr-add2/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-add2/01-output-northbound-state.json index 0567f2e7..db1eaf92 100644 --- a/holo-ldp/tests/conformance/sb-addr-add2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-add2/01-output-northbound-state.json @@ -274,9 +274,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-addr-add2/02-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-add2/02-output-northbound-state.json index 0a25da0d..6d298c59 100644 --- a/holo-ldp/tests/conformance/sb-addr-add2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-add2/02-output-northbound-state.json @@ -281,9 +281,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-addr-del1/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-del1/01-output-northbound-state.json index fbab7ff8..6c1f4e12 100644 --- a/holo-ldp/tests/conformance/sb-addr-del1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-del1/01-output-northbound-state.json @@ -440,9 +440,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, @@ -491,9 +489,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-addr-del1/02-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-del1/02-output-northbound-state.json index f5fe0ca7..8879648f 100644 --- a/holo-ldp/tests/conformance/sb-addr-del1/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-del1/02-output-northbound-state.json @@ -436,9 +436,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, @@ -487,9 +485,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-addr-del2/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-addr-del2/01-output-northbound-state.json index 0567f2e7..db1eaf92 100644 --- a/holo-ldp/tests/conformance/sb-addr-del2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-addr-del2/01-output-northbound-state.json @@ -274,9 +274,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/sb-iface-update1/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-iface-update1/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/sb-iface-update1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-iface-update1/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-iface-update2/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-iface-update2/01-output-northbound-state.json index c1818dbc..dfd37fda 100644 --- a/holo-ldp/tests/conformance/sb-iface-update2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-iface-update2/01-output-northbound-state.json @@ -885,9 +885,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -936,9 +934,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -987,9 +983,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-iface-update3/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-iface-update3/01-output-northbound-state.json index a9061a7b..027e4842 100644 --- a/holo-ldp/tests/conformance/sb-iface-update3/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-iface-update3/01-output-northbound-state.json @@ -442,9 +442,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-iface-update3/02-output-northbound-state.json b/holo-ldp/tests/conformance/sb-iface-update3/02-output-northbound-state.json index a38f8f52..492d0ffa 100644 --- a/holo-ldp/tests/conformance/sb-iface-update3/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-iface-update3/02-output-northbound-state.json @@ -445,9 +445,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-route-add1/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-route-add1/01-output-northbound-state.json index 6ae6de0f..a354af58 100644 --- a/holo-ldp/tests/conformance/sb-route-add1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-route-add1/01-output-northbound-state.json @@ -933,9 +933,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -984,9 +982,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1043,9 +1039,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-route-add2/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-route-add2/01-output-northbound-state.json index 7bf9dac0..fbb0b2e0 100644 --- a/holo-ldp/tests/conformance/sb-route-add2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-route-add2/01-output-northbound-state.json @@ -919,9 +919,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -970,9 +968,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1029,9 +1025,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-route-add2/02-output-northbound-state.json b/holo-ldp/tests/conformance/sb-route-add2/02-output-northbound-state.json index 1841e3d8..77310bea 100644 --- a/holo-ldp/tests/conformance/sb-route-add2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-route-add2/02-output-northbound-state.json @@ -940,9 +940,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -991,9 +989,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1050,9 +1046,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-route-del1/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-route-del1/01-output-northbound-state.json index b06fb69d..7292d790 100644 --- a/holo-ldp/tests/conformance/sb-route-del1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-route-del1/01-output-northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/sb-route-del2/01-output-northbound-state.json b/holo-ldp/tests/conformance/sb-route-del2/01-output-northbound-state.json index 6ae6de0f..a354af58 100644 --- a/holo-ldp/tests/conformance/sb-route-del2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/sb-route-del2/01-output-northbound-state.json @@ -933,9 +933,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -984,9 +982,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1043,9 +1039,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/tcp-accept2/01-output-northbound-state.json b/holo-ldp/tests/conformance/tcp-accept2/01-output-northbound-state.json index 52090ff2..43390f59 100644 --- a/holo-ldp/tests/conformance/tcp-accept2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/tcp-accept2/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -1005,9 +1003,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1064,9 +1060,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/tcp-close1/01-output-northbound-state.json b/holo-ldp/tests/conformance/tcp-close1/01-output-northbound-state.json index ce8bb33f..c537cca0 100644 --- a/holo-ldp/tests/conformance/tcp-close1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/tcp-close1/01-output-northbound-state.json @@ -671,9 +671,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -722,9 +720,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/tcp-connect1/01-output-northbound-state.json b/holo-ldp/tests/conformance/tcp-connect1/01-output-northbound-state.json index c13588de..6bef5b6e 100644 --- a/holo-ldp/tests/conformance/tcp-connect1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/tcp-connect1/01-output-northbound-state.json @@ -918,9 +918,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -960,9 +958,7 @@ "session-state": "opensent", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 45000, - "remote-address": "1.1.1.10", - "remote-port": 646 + "remote-address": "1.1.1.10" }, "statistics": { "total-addresses": 0, @@ -1011,9 +1007,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1070,9 +1064,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/timeout-adj1/01-output-northbound-state.json b/holo-ldp/tests/conformance/timeout-adj1/01-output-northbound-state.json index b1da3554..1bed6ad3 100644 --- a/holo-ldp/tests/conformance/timeout-adj1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/timeout-adj1/01-output-northbound-state.json @@ -888,9 +888,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -939,9 +937,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -990,9 +986,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/timeout-adj2/01-output-northbound-state.json b/holo-ldp/tests/conformance/timeout-adj2/01-output-northbound-state.json index b1da3554..1bed6ad3 100644 --- a/holo-ldp/tests/conformance/timeout-adj2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/timeout-adj2/01-output-northbound-state.json @@ -888,9 +888,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -939,9 +937,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -990,9 +986,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/timeout-adj2/02-output-northbound-state.json b/holo-ldp/tests/conformance/timeout-adj2/02-output-northbound-state.json index 39347e0c..d382f62e 100644 --- a/holo-ldp/tests/conformance/timeout-adj2/02-output-northbound-state.json +++ b/holo-ldp/tests/conformance/timeout-adj2/02-output-northbound-state.json @@ -633,9 +633,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -684,9 +682,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/timeout-nbr1/01-output-northbound-state.json b/holo-ldp/tests/conformance/timeout-nbr1/01-output-northbound-state.json index 4fdf1ee3..4f2b4bd8 100644 --- a/holo-ldp/tests/conformance/timeout-nbr1/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/timeout-nbr1/01-output-northbound-state.json @@ -300,9 +300,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/timeout-nbr2/01-output-northbound-state.json b/holo-ldp/tests/conformance/timeout-nbr2/01-output-northbound-state.json index 4fdf1ee3..4f2b4bd8 100644 --- a/holo-ldp/tests/conformance/timeout-nbr2/01-output-northbound-state.json +++ b/holo-ldp/tests/conformance/timeout-nbr2/01-output-northbound-state.json @@ -300,9 +300,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo1-1/rt1/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo1-1/rt1/output/northbound-state.json index adade1f0..947a27fb 100644 --- a/holo-ldp/tests/conformance/topologies/topo1-1/rt1/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo1-1/rt1/output/northbound-state.json @@ -436,9 +436,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "1.1.1.1", - "local-port": 646, - "remote-address": "2.2.2.2", - "remote-port": 40439 + "remote-address": "2.2.2.2" }, "statistics": { "total-addresses": 3, @@ -487,9 +485,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "1.1.1.1", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 46503 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo1-1/rt2/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo1-1/rt2/output/northbound-state.json index f5fe0ca7..8879648f 100644 --- a/holo-ldp/tests/conformance/topologies/topo1-1/rt2/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo1-1/rt2/output/northbound-state.json @@ -436,9 +436,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 40439, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, @@ -487,9 +485,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 36341 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo1-1/rt3/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo1-1/rt3/output/northbound-state.json index ac9eacf3..f1749445 100644 --- a/holo-ldp/tests/conformance/topologies/topo1-1/rt3/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo1-1/rt3/output/northbound-state.json @@ -436,9 +436,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "3.3.3.3", - "local-port": 46503, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 3, @@ -487,9 +485,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "3.3.3.3", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 42203 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo1-1/rt4/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo1-1/rt4/output/northbound-state.json index 117eda71..53e22aa0 100644 --- a/holo-ldp/tests/conformance/topologies/topo1-1/rt4/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo1-1/rt4/output/northbound-state.json @@ -436,9 +436,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "4.4.4.4", - "local-port": 36341, - "remote-address": "2.2.2.2", - "remote-port": 646 + "remote-address": "2.2.2.2" }, "statistics": { "total-addresses": 3, @@ -487,9 +485,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "4.4.4.4", - "local-port": 42203, - "remote-address": "3.3.3.3", - "remote-port": 646 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt1/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt1/output/northbound-state.json index c4073643..da5e6ad1 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt1/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt1/output/northbound-state.json @@ -635,9 +635,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "1.1.1.1", - "local-port": 646, - "remote-address": "2.2.2.2", - "remote-port": 34139 + "remote-address": "2.2.2.2" }, "statistics": { "total-addresses": 4, @@ -686,9 +684,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "1.1.1.1", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 39365 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt2/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt2/output/northbound-state.json index 4681d98a..b1234ef1 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt2/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt2/output/northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 34139, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "3.3.3.3", - "remote-port": 37703 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "2.2.2.2", - "local-port": 646, - "remote-address": "4.4.4.4", - "remote-port": 39091 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt3/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt3/output/northbound-state.json index 985d6617..bf2c5c30 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt3/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt3/output/northbound-state.json @@ -907,9 +907,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "3.3.3.3", - "local-port": 39365, - "remote-address": "1.1.1.1", - "remote-port": 646 + "remote-address": "1.1.1.1" }, "statistics": { "total-addresses": 2, @@ -958,9 +956,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "3.3.3.3", - "local-port": 37703, - "remote-address": "2.2.2.2", - "remote-port": 646 + "remote-address": "2.2.2.2" }, "statistics": { "total-addresses": 4, @@ -1017,9 +1013,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "3.3.3.3", - "local-port": 646, - "remote-address": "5.5.5.5", - "remote-port": 39617 + "remote-address": "5.5.5.5" }, "statistics": { "total-addresses": 5, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt4/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt4/output/northbound-state.json index 682b6449..352bdbd2 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt4/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt4/output/northbound-state.json @@ -938,9 +938,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "4.4.4.4", - "local-port": 39091, - "remote-address": "2.2.2.2", - "remote-port": 646 + "remote-address": "2.2.2.2" }, "statistics": { "total-addresses": 4, @@ -989,9 +987,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "4.4.4.4", - "local-port": 646, - "remote-address": "5.5.5.5", - "remote-port": 33513 + "remote-address": "5.5.5.5" }, "statistics": { "total-addresses": 5, @@ -1040,9 +1036,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "4.4.4.4", - "local-port": 646, - "remote-address": "6.6.6.6", - "remote-port": 45677 + "remote-address": "6.6.6.6" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt5/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt5/output/northbound-state.json index f3ab2bc6..0fb5a6a4 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt5/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt5/output/northbound-state.json @@ -938,9 +938,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "5.5.5.5", - "local-port": 39617, - "remote-address": "3.3.3.3", - "remote-port": 646 + "remote-address": "3.3.3.3" }, "statistics": { "total-addresses": 4, @@ -989,9 +987,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "5.5.5.5", - "local-port": 33513, - "remote-address": "4.4.4.4", - "remote-port": 646 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, @@ -1040,9 +1036,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "5.5.5.5", - "local-port": 646, - "remote-address": "6.6.6.6", - "remote-port": 35301 + "remote-address": "6.6.6.6" }, "statistics": { "total-addresses": 3, diff --git a/holo-ldp/tests/conformance/topologies/topo2-1/rt6/output/northbound-state.json b/holo-ldp/tests/conformance/topologies/topo2-1/rt6/output/northbound-state.json index 8a4d1792..6a146132 100644 --- a/holo-ldp/tests/conformance/topologies/topo2-1/rt6/output/northbound-state.json +++ b/holo-ldp/tests/conformance/topologies/topo2-1/rt6/output/northbound-state.json @@ -666,9 +666,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "6.6.6.6", - "local-port": 45677, - "remote-address": "4.4.4.4", - "remote-port": 646 + "remote-address": "4.4.4.4" }, "statistics": { "total-addresses": 5, @@ -717,9 +715,7 @@ "session-state": "operational", "tcp-connection": { "local-address": "6.6.6.6", - "local-port": 35301, - "remote-address": "5.5.5.5", - "remote-port": 646 + "remote-address": "5.5.5.5" }, "statistics": { "total-addresses": 5, diff --git a/holo-northbound/src/state.rs b/holo-northbound/src/state.rs index 3e0c8684..4cd1e20b 100644 --- a/holo-northbound/src/state.rs +++ b/holo-northbound/src/state.rs @@ -67,6 +67,8 @@ bitflags! { const LS_CKSUM = 0x0040; // Link State in raw format. const LS_RAW = 0x0080; + // Layer four port number. + const PORT_NO = 0x0100; } } diff --git a/holo-protocol/src/test/stub/northbound.rs b/holo-protocol/src/test/stub/northbound.rs index 81cb2d92..4e4c066f 100644 --- a/holo-protocol/src/test/stub/northbound.rs +++ b/holo-protocol/src/test/stub/northbound.rs @@ -134,7 +134,8 @@ impl NorthboundStub { | NodeAttributes::LS_AGE | NodeAttributes::LS_SEQNO | NodeAttributes::LS_CKSUM - | NodeAttributes::LS_RAW, + | NodeAttributes::LS_RAW + | NodeAttributes::PORT_NO, ), responder: Some(responder_tx), });