* Show current count of captured packets * with backspaces to overwrite last value. */
| 858 | * with backspaces to overwrite last value. |
| 859 | */ |
| 860 | static void show_count(uint64_t count) |
| 861 | { |
| 862 | unsigned int i; |
| 863 | static unsigned int bt; |
| 864 | |
| 865 | for (i = 0; i < bt; i++) |
| 866 | fputc('\b', stderr); |
| 867 | |
| 868 | bt = fprintf(stderr, "%"PRIu64" ", count); |
| 869 | } |
| 870 | |
| 871 | /* Write multiple packets in older pcap format */ |
| 872 | static ssize_t |
no outgoing calls
no test coverage detected