@@ -618,9 +618,9 @@ impl SendPacket {
618
618
timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
619
619
seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
620
620
port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
621
- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
621
+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
622
622
port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
623
- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
623
+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
624
624
channel_ordering_attr : channel_ordering. into ( ) ,
625
625
conn_id_attr_on_a : src_connection_id. into ( ) ,
626
626
}
@@ -730,9 +730,9 @@ impl ReceivePacket {
730
730
timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
731
731
seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
732
732
port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
733
- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
733
+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
734
734
port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
735
- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
735
+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
736
736
channel_ordering_attr : channel_ordering. into ( ) ,
737
737
conn_id_attr_on_b : dst_connection_id. into ( ) ,
738
738
}
@@ -846,9 +846,9 @@ impl WriteAcknowledgement {
846
846
timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
847
847
seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
848
848
port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
849
- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
849
+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
850
850
port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
851
- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
851
+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
852
852
acknowledgement : acknowledgement. into ( ) ,
853
853
conn_id_attr_on_b : conn_id_on_b. into ( ) ,
854
854
}
@@ -956,9 +956,9 @@ impl AcknowledgePacket {
956
956
timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
957
957
seq_on_a : packet. header . seq_on_a . into ( ) ,
958
958
port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
959
- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
959
+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
960
960
port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
961
- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
961
+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
962
962
channel_ordering_attr : channel_ordering. into ( ) ,
963
963
conn_id_attr_on_a : src_connection_id. into ( ) ,
964
964
}
@@ -1059,9 +1059,9 @@ impl TimeoutPacket {
1059
1059
timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
1060
1060
seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
1061
1061
port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
1062
- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
1062
+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
1063
1063
port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
1064
- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
1064
+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
1065
1065
channel_ordering_attr : channel_ordering. into ( ) ,
1066
1066
}
1067
1067
}
0 commit comments