tarsnap_opt.h 767 B

1234567891011121314151617181920212223242526
  1. #ifndef TARSNAP_OPT_H_
  2. #define TARSNAP_OPT_H_
  3. /* Use multiple TCP connections when writing an archive. */
  4. extern int tarsnap_opt_aggressive_networking;
  5. /* Keep trying forever if connection lost. */
  6. extern int tarsnap_opt_retry_forever;
  7. /* Print statistics using "human-readable" SI prefixes. */
  8. extern int tarsnap_opt_humanize_numbers;
  9. /* Be verbose when warning about network glitches. */
  10. extern int tarsnap_opt_noisy_warnings;
  11. /* Maximum number of bytes to send over the network before QUITing. */
  12. extern uint64_t tarsnap_opt_maxbytesout;
  13. /* Number of bytes to send between checkpoints. */
  14. extern uint64_t tarsnap_opt_checkpointbytes;
  15. /* Print statistics about netpacket transfer. */
  16. extern int tarsnap_opt_debug_network_stats;
  17. #endif /* !TARSNAP_OPT_H_ */