1234567891011121314151617181920212223242526 |
- {% extends "base.html" %}
- {% block content %}
- <h2>Source code</h2>
- <p>The source code is available <a href="https://code.ffdn.org/zorun/peerfinder">here</a></p>
- <h2>Known issues</h2>
- <p>
- Current limitations:
- <ol>
- <li>Only the average RTT is measured, we should include other simple
- statistics (jitter, min/max RTT, packet loss)</li>
- <li>The API is not documented (just look at the code)</li>
- </ol>
- Unavoidable facts that cannot be fixed:
- <ol>
- <li>Latency measured today might be meaningless tomorrow, as routing
- on the Internet is always changing</li>
- <li>Low latency does not guarantee high throughput</li>
- </ol>
- </p>
- {% endblock %}
|