File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -342,6 +342,7 @@ impl UdpCopyBuffer {
342
342
self . recv_done = true ;
343
343
}
344
344
self . send_end += count;
345
+ self . active = true ;
345
346
}
346
347
Poll :: Ready ( Err ( e) ) => return Poll :: Ready ( Err ( e) ) ,
347
348
Poll :: Pending => {
@@ -361,6 +362,7 @@ impl UdpCopyBuffer {
361
362
. map ( |p| p. buf_data_end - p. buf_data_off )
362
363
. sum :: < usize > ( ) ;
363
364
self . send_start += count;
365
+ self . active = true ;
364
366
}
365
367
self . send_start = 0 ;
366
368
self . send_end = 0 ;
Original file line number Diff line number Diff line change @@ -354,6 +354,7 @@ impl UdpRelayBuffer {
354
354
self . recv_done = true ;
355
355
}
356
356
self . send_end += count;
357
+ self . active = true ;
357
358
}
358
359
Poll :: Ready ( Err ( e) ) => return Poll :: Ready ( Err ( e) ) ,
359
360
Poll :: Pending => {
@@ -373,6 +374,7 @@ impl UdpRelayBuffer {
373
374
. map ( |p| p. buf_data_end - p. buf_data_off )
374
375
. sum :: < usize > ( ) ;
375
376
self . send_start += count;
377
+ self . active = true ;
376
378
}
377
379
self . send_start = 0 ;
378
380
self . send_end = 0 ;
You can’t perform that action at this time.
0 commit comments