diff --git a/pages/help/cmd_d2d.php b/pages/help/cmd_d2d.php
index d6c6955..65c918a 100644
--- a/pages/help/cmd_d2d.php
+++ b/pages/help/cmd_d2d.php
@@ -57,6 +57,8 @@
`H` - get response headers
`B` - get response body
`X` - ignore the response, return nothing
+ `N=nonce` - a custom string that will be added in the options field of the response message.
+ Use this to keep track of which request a response belongs to.
`T=ms` - request timeout (default 5000~ms), in milliseconds
`L=bytes` - limit response length (default 0 = don't limit). Applies to the head, body, or both combined, depending on the `H` and `B` flags
`l=bytes` - limit the response buffer size (default 5000~B).
@@ -75,7 +77,7 @@
- `_status_` - a HTTP status code, eg. 200 is OK, 404 Not found.
- `_options_` - similar to those in the request, here describing the response data.
- This field can contain comma-separated `B`, `H` and `L=bytes`.
+ This field can contain comma-separated `B`, `H` and `L=bytes` and `N=nonce`.
- `_response_` - the response, as requested. If both headers and body are received,
they will be separated by an empty line (i.e. `\r\n\r\n`). Response can be up to several
kilobytes long, depending on the `L=` and `l=` options.