4848 ext_mlink,
4949 ext_lowlatency,
5050 ext_compression,
51- ext_south ,
51+ ext_remote_bound ,
5252 } = x;
5353
5454 // Header
6161 + ( ext_mlink. is_some ( ) as u8 )
6262 + ( ext_lowlatency. is_some ( ) as u8 )
6363 + ( ext_compression. is_some ( ) as u8 )
64- + ( ext_south . is_some ( ) as u8 ) ;
64+ + ( ext_remote_bound . is_some ( ) as u8 ) ;
6565
6666 #[ cfg( feature = "shared-memory" ) ]
6767 {
@@ -108,7 +108,7 @@ where
108108 n_exts -= 1 ;
109109 self . write ( & mut * writer, ( compression, n_exts != 0 ) ) ?;
110110 }
111- if let Some ( south) = ext_south . as_ref ( ) {
111+ if let Some ( south) = ext_remote_bound . as_ref ( ) {
112112 n_exts -= 1 ;
113113 self . write ( & mut * writer, ( south, n_exts != 0 ) ) ?;
114114 }
@@ -159,7 +159,7 @@ where
159159 let mut ext_mlink = None ;
160160 let mut ext_lowlatency = None ;
161161 let mut ext_compression = None ;
162- let mut ext_south = None ;
162+ let mut ext_remote_bound = None ;
163163
164164 let mut has_ext = imsg:: has_flag ( self . header , flag:: Z ) ;
165165 while has_ext {
@@ -199,7 +199,7 @@ where
199199 }
200200 ext:: RemoteBound :: ID => {
201201 let ( q, ext) : ( ext:: RemoteBound , bool ) = eodec. read ( & mut * reader) ?;
202- ext_south = Some ( q) ;
202+ ext_remote_bound = Some ( q) ;
203203 has_ext = ext;
204204 }
205205 _ => {
@@ -219,7 +219,7 @@ where
219219 ext_mlink,
220220 ext_lowlatency,
221221 ext_compression,
222- ext_south ,
222+ ext_remote_bound ,
223223 } )
224224 }
225225}
@@ -242,7 +242,7 @@ where
242242 ext_mlink,
243243 ext_lowlatency,
244244 ext_compression,
245- ext_south ,
245+ ext_remote_bound ,
246246 } = x;
247247
248248 // Header
@@ -257,7 +257,7 @@ where
257257 + ( ext_mlink. is_some ( ) as u8 )
258258 + ( ext_lowlatency. is_some ( ) as u8 )
259259 + ( ext_compression. is_some ( ) as u8 )
260- + ( ext_south . is_some ( ) as u8 ) ;
260+ + ( ext_remote_bound . is_some ( ) as u8 ) ;
261261
262262 #[ cfg( feature = "shared-memory" ) ]
263263 {
@@ -303,7 +303,7 @@ where
303303 n_exts -= 1 ;
304304 self . write ( & mut * writer, ( compression, n_exts != 0 ) ) ?;
305305 }
306- if let Some ( south) = ext_south . as_ref ( ) {
306+ if let Some ( south) = ext_remote_bound . as_ref ( ) {
307307 n_exts -= 1 ;
308308 self . write ( & mut * writer, ( south, n_exts != 0 ) ) ?;
309309 }
@@ -353,7 +353,7 @@ where
353353 let mut ext_mlink = None ;
354354 let mut ext_lowlatency = None ;
355355 let mut ext_compression = None ;
356- let mut ext_south = None ;
356+ let mut ext_remote_bound = None ;
357357
358358 let mut has_ext = imsg:: has_flag ( self . header , flag:: Z ) ;
359359 while has_ext {
@@ -393,7 +393,7 @@ where
393393 }
394394 ext:: RemoteBound :: ID => {
395395 let ( q, ext) : ( ext:: RemoteBound , bool ) = eodec. read ( & mut * reader) ?;
396- ext_south = Some ( q) ;
396+ ext_remote_bound = Some ( q) ;
397397 has_ext = ext;
398398 }
399399 _ => {
@@ -412,7 +412,7 @@ where
412412 ext_mlink,
413413 ext_lowlatency,
414414 ext_compression,
415- ext_south ,
415+ ext_remote_bound ,
416416 } )
417417 }
418418}
0 commit comments