Added new I2PControl calls to API level 1.

This commit is contained in:
dev
2015-07-30 17:48:13 +00:00
parent f6680aa54c
commit b5790851fa
2 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@
# '<shortlink>': '<slug>',
BLOG_SHORTLINKS = {
'i2pcon': '2015/07/16/I2PCon',
'toronto': '2015/07/16/I2PCon',
'0.9.19': '2015/04/12/0.9.19-Release',
'0.9.20': '2015/06/02/0.9.20-Release',

View File

@ -152,19 +152,23 @@ Parameters are only provided in a named way (maps).
</ul>
<ul>RouterManager &ndash; {% trans %}Manages I2P router restart/shutdown.{% endtrans %}
<ul>{{ _('Request:') }}
<li>*FindUpdates &ndash; [n/a] {% trans %}<b>Blocking</b>. Initiates a search for signed updates.{% endtrans %}</li>
<li>*Reseed &ndash; [n/a] {% trans %}Initiates a router reseed, fetching peers into our NetDB from a remote host.{% endtrans %}</li>
<li>*Restart &ndash; [n/a] {% trans %}Restarts the router.{% endtrans %}</li>
<li>*RestartGraceful &ndash; [n/a] {% trans %}Restarts the router gracefully (waits for participating tunnels to expire).{% endtrans %}</li>
<li>*Shutdown &ndash; [n/a] {% trans %}Shuts down the router.{% endtrans %}</li>
<li>*ShutdownGraceful &ndash; [n/a] {% trans %}Shuts down the router gracefully (waits for participating tunnels to expire).{% endtrans %}</li>
<li>*Update &ndash; [n/a] {% trans %}Initiates a router update from signed sources.{% endtrans %}</li>
<li>Token &ndash; [String] {% trans %}Token used for authenticating the client. Is provided by the server via the 'Authenticate' RPC method.{% endtrans %}</li>
</ul>
<ul>{{ _('Response:') }}
<li>**FindUpdates &ndash; [boolean] {% trans %}<b>Blocking</b>. Returns true iff a signed update has been found.{% endtrans %}</li>
<li>**Reseed &ndash; [null] {% trans %}If requested, verifies that a reseed has been initiated.{% endtrans %}</li>
<li>**Restart &ndash; [null] {% trans %}If requested, verifies that a restart has been initiated.{% endtrans %}</li>
<li>**RestartGraceful &ndash; [null] {% trans %}If requested, verifies that a graceful restart has been initiated.{% endtrans %}</li>
<li>**Shutdown &ndash; [null] {% trans %}If requested, verifies that a shutdown has been initiated{% endtrans %}</li>
<li>**ShutdownGraceful &ndash; [null] {% trans %}If requested, verifies that a graceful shutdown has been initiated{% endtrans %}</li>
<li>**Update &ndash; [String] {% trans %}<b>Blocking</b>. If requested, returns the status of the the update{% endtrans %}</li>
</ul>
</ul>
<ul>NetworkSetting &ndash; {% trans %}Fetches or sets various network related settings. Ports, addresses etc.{% endtrans %}