Config.in 595 B

12345678910111213141516171819202122
  1. comment "httping needs a toolchain w/ wchar"
  2. depends on !BR2_USE_WCHAR
  3. config BR2_PACKAGE_HTTPING
  4. bool "httping"
  5. depends on BR2_USE_WCHAR
  6. help
  7. Httping is like 'ping' but for http-requests.
  8. Give it an url, and it'll show you how long it takes to
  9. connect, send a request and retrieve the reply (only the
  10. headers).
  11. Be aware that the transmission across the network also takes
  12. time! So it measures the latency of the webserver + network.
  13. http://www.vanheusden.com/httping/
  14. if BR2_PACKAGE_HTTPING
  15. config BR2_PACKAGE_HTTPING_TFO
  16. bool "TCP Fast Open (TFO) support"
  17. endif