docs/templates/pages/proto/traceroute.html

21 lines
652 B
HTML
Raw Normal View History

2022-04-11 18:27:15 +00:00
{% extends "konami.html" %}
2021-12-29 01:41:21 +00:00
{% block title %}traceroute{% endblock %}
2021-12-28 20:54:12 +00:00
{% block body %}
<h1><code>traceroute</code></h1>
<h2 id="send"><code>traceroute.send</code></h2>
<h3>Request:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<call ...>
<traceroute proto="" method="send">
<hop[]>
<valid __type="bool">
<addr __type="ip4">
<usec __type="u64">
</hop[]>
</traceroute>
</call>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<p><code>hop</code> repeats for every hop (unsurprisingly)</p>
<h3>Response:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<response>
<traceroute status="??status" />
</response>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
{% endblock %}