Project

General

Profile

Feature #2782

Updated by Junxiao Shi over 10 years ago

The original ICMP ping program, `ping(8)`, prints a one-line summary of the current statistics upon receiving SIGQUIT. For example: 

 ``` 
 26/26 packets, 0% loss, min/avg/ewma/max = 2.626/3.513/3.448/4.249 ms 
 ``` 

 I think `ndnping` should replicate this feature. 

 The ping client MUST continue running after receiving SIGQUIT, as if nothing happened. 
 Only SIGINT terminates execution. 

 On Ubuntu terminal, CTRL+\ key combination sends SIGQUIT to the process.

Back