docs/templates/pages/proto/esoc.html

30 lines
761 B
HTML
Raw Normal View History

2021-12-28 20:54:12 +00:00
{% extends "base.html" %}
{% block body %}
<h1><code>esoc</code></h1>
<h2 id="read"><code>esoc.read</code></h2>
<h3>Request:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<call ...>
<esoc method="read">
<senddata />
</esoc>
</call>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<h3>Response:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<response>
<esoc status="??status">
<recvdata />
</esoc>
</response>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<p>Go figure.</p>
<h2 id="write"><code>esoc.write</code></h2>
<h3>Request:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<call ...>
<esoc method="write">
<senddata />
</esoc>
</call>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
<h3>Response:</h3>
2021-12-28 22:29:33 +00:00
<pre>{% highlight "cxml" %}<response>
<esoc status="??status" />
</response>{% endhighlight %}</pre>
2021-12-28 20:54:12 +00:00
{% endblock %}