{% extends "base.html" %} {% block content %}

Packet Rate Control


Emulates poor network conditions by limiting the rate at which packages are transfered.

Package transfer is rate limited by putting incoming packets into a queue and limiting the rate at which packets may leave the queue.

Option Description
kbit The rate limit in kbit.
milliseconds The amount of time a packet may spend in the queue before being discarded.
bytes The size of the queue in bytes.

{% if method == 'POST' %} {% if success %} {% else %} {% endif %} {% endif %}
{% if kbit %} {% else %} {% endif %}
kbit
{% if latency_milliseconds %} {% else %} {% endif %}
milliseconds
{% if burst_bytes %} {% else %} {% endif %}
bytes
Examples
{%- for item in examples -%} {% endfor -%}
Description Values
{{item.description}} {{item.kbit}} kbit, {{item.latency}} ms, {{item.burst}} bytes
{% endblock %}