@@ -138,6 +138,9 @@ impl connection::Trait for TestConnection {
138138 _datagram : & mut <Self :: Config as endpoint:: Config >:: DatagramEndpoint ,
139139 _dc_endpoint : & mut <Self :: Config as endpoint:: Config >:: DcEndpoint ,
140140 _conn_limits_endpoint : & mut <Self :: Config as endpoint:: Config >:: ConnectionLimits ,
141+ _random_generator : & mut <Self :: Config as endpoint:: Config >:: RandomGenerator ,
142+ _packet_interceptor : & mut <Self :: Config as endpoint:: Config >:: PacketInterceptor ,
143+ _connection_id_format : & mut <Self :: Config as endpoint:: Config >:: ConnectionIdFormat ,
141144 ) -> Result < ( ) , connection:: Error > {
142145 Ok ( ( ) )
143146 }
@@ -153,6 +156,7 @@ impl connection::Trait for TestConnection {
153156 _datagram_endpoint : & mut <Self :: Config as endpoint:: Config >:: DatagramEndpoint ,
154157 _dc_endpoint : & mut <Self :: Config as endpoint:: Config >:: DcEndpoint ,
155158 _conn_limits_endpoint : & mut <Self :: Config as endpoint:: Config >:: ConnectionLimits ,
159+ _connection_id_format : & <Self :: Config as endpoint:: Config >:: ConnectionIdFormat ,
156160 ) -> Result < ( ) , ProcessingError > {
157161 Ok ( ( ) )
158162 }
@@ -169,6 +173,7 @@ impl connection::Trait for TestConnection {
169173 _datagram_endpoint : & mut <Self :: Config as endpoint:: Config >:: DatagramEndpoint ,
170174 _dc_endpoint : & mut <Self :: Config as endpoint:: Config >:: DcEndpoint ,
171175 _conn_limits_endpoint : & mut <Self :: Config as endpoint:: Config >:: ConnectionLimits ,
176+ _connection_id_format : & <Self :: Config as endpoint:: Config >:: ConnectionIdFormat ,
172177 ) -> Result < ( ) , ProcessingError > {
173178 Ok ( ( ) )
174179 }
@@ -185,6 +190,7 @@ impl connection::Trait for TestConnection {
185190 _datagram_endpoint : & mut <Self :: Config as endpoint:: Config >:: DatagramEndpoint ,
186191 _dc_endpoint : & mut <Self :: Config as endpoint:: Config >:: DcEndpoint ,
187192 _connection_limits_endpoint : & mut <Self :: Config as endpoint:: Config >:: ConnectionLimits ,
193+ _connection_id_format : & <Self :: Config as endpoint:: Config >:: ConnectionIdFormat ,
188194 ) -> Result < ( ) , ProcessingError > {
189195 Ok ( ( ) )
190196 }
0 commit comments