94 lines
2.8 KiB
HTML
94 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>e-Amusement API</title>
|
|
|
|
<link rel="stylesheet" href="../styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td><a href="..">Contents</a></td>
|
|
<td><a href="../transport.html">Transport layer</a></td>
|
|
<td><a href="../packet.html">Packet format</a></td>
|
|
<td><a href="../protocol.html">Application Protocol</a></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h1><code>sidmgr</code></h1>
|
|
<h2 id="create"><code>sidmgr.create</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<sidmgr method="create">
|
|
<cardtype __type="str" />
|
|
<cardid __type="str" />
|
|
<cardgid __type="str" />
|
|
<steal __type="u8" />
|
|
</sidmgr>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<sidmgr status="<i>status</i>">
|
|
<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></code></pre>
|
|
|
|
<h2 id="open"><code>sidmgr.open</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<sidmgr method="open" sid="" >
|
|
<pass __type="str" />
|
|
</sidmgr>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<sidmgr status="<i>status</i>">
|
|
<state __type="u32" />
|
|
<refid __type="str" />
|
|
<locked __type="time" />
|
|
</sidmgr>
|
|
</response></code></pre>
|
|
|
|
<h2 id="touch"><code>sidmgr.touch</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<sidmgr method="touch" sid="" />
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<sidmgr status="<i>status</i>" />
|
|
</response></code></pre>
|
|
|
|
<h2 id="branch"><code>sidmgr.branch</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<sidmgr method="branch" sid="" />
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<sidmgr status="<i>status</i>" />
|
|
</response></code></pre>
|
|
|
|
<h2 id="close"><code>sidmgr.close</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre><code><call <i>...</i>>
|
|
<sidmgr method="close" sid="" />
|
|
<cause __type="u32" />
|
|
</sidmgr>
|
|
</call></code></pre>
|
|
<h3>Response:</h3>
|
|
<pre><code><response>
|
|
<sidmgr status="<i>status</i>" />
|
|
</response></code></pre>
|
|
</body> |