docs/templates/pages/proto/sidmgr.html

74 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block body %}
<h1><code>sidmgr</code></h1>
<h2 id="create"><code>sidmgr.create</code></h2>
<h3>Request:</h3>
<pre>{% highlight "cxml" %}<call ...>
<sidmgr method="create">
<cardtype __type="str" />
<cardid __type="str" />
<cardgid __type="str" />
<steal __type="u8" />
</sidmgr>
</call>{% endhighlight %}</pre>
<h3>Response:</h3>
<pre>{% highlight "cxml" %}<response>
<sidmgr status="??status">
<state __type="u32" />
<e_count __type="u8" />
<last __type="time" />
<locked __type="time" />
<sid __type="str" />
<cardid_status __type="u8" />
<refid __type="str" />
</sidmgr>
</response>{% endhighlight %}</pre>
<h2 id="open"><code>sidmgr.open</code></h2>
<h3>Request:</h3>
<pre>{% highlight "cxml" %}<call ...>
<sidmgr method="open" sid="" >
<pass __type="str" />
</sidmgr>
</call>{% endhighlight %}</pre>
<h3>Response:</h3>
<pre>{% highlight "cxml" %}<response>
<sidmgr status="??status">
<state __type="u32" />
<refid __type="str" />
<locked __type="time" />
</sidmgr>
</response>{% endhighlight %}</pre>
<h2 id="touch"><code>sidmgr.touch</code></h2>
<h3>Request:</h3>
<pre>{% highlight "cxml" %}<call ...>
<sidmgr method="touch" sid="" />
</call>{% endhighlight %}</pre>
<h3>Response:</h3>
<pre>{% highlight "cxml" %}<response>
<sidmgr status="??status" />
</response>{% endhighlight %}</pre>
<h2 id="branch"><code>sidmgr.branch</code></h2>
<h3>Request:</h3>
<pre>{% highlight "cxml" %}<call ...>
<sidmgr method="branch" sid="" />
</call>{% endhighlight %}</pre>
<h3>Response:</h3>
<pre>{% highlight "cxml" %}<response>
<sidmgr status="??status" />
</response>{% endhighlight %}</pre>
<h2 id="close"><code>sidmgr.close</code></h2>
<h3>Request:</h3>
<pre>{% highlight "cxml" %}<call ...>
<sidmgr method="close" sid="" />
<cause __type="u32" />
</sidmgr>
</call>{% endhighlight %}</pre>
<h3>Response:</h3>
<pre>{% highlight "cxml" %}<response>
<sidmgr status="??status" />
</response>{% endhighlight %}</pre>
{% endblock %}