dev.html 672 B

1234567891011121314151617181920212223242526
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Source code</h2>
  4. <p>The source code is available <a href="https://code.ffdn.org/zorun/peerfinder">here</a></p>
  5. <h2>Known issues</h2>
  6. <p>
  7. Current limitations:
  8. <ol>
  9. <li>Only the average RTT is measured, we should include other simple
  10. statistics (jitter, min/max RTT, packet loss)</li>
  11. <li>The API is not documented (just look at the code)</li>
  12. </ol>
  13. Unavoidable facts that cannot be fixed:
  14. <ol>
  15. <li>Latency measured today might be meaningless tomorrow, as routing
  16. on the Internet is always changing</li>
  17. <li>Low latency does not guarantee high throughput</li>
  18. </ol>
  19. </p>
  20. {% endblock %}