From 92c6bf0f8babd63469b70f9c3a373ec15984a6c5 Mon Sep 17 00:00:00 2001 From: Matthias Urlichs Date: Tue, 24 Dec 2024 17:43:06 +0100 Subject: [PATCH] more cbor --- doc/common/cbor.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/common/cbor.rst b/doc/common/cbor.rst index 37c41dbb..be83a5bb 100644 --- a/doc/common/cbor.rst +++ b/doc/common/cbor.rst @@ -46,15 +46,15 @@ Object Proxy =============== ============================= A Proxy refers to an object that cannot be encoded in CBOR. In a messaging -system, a sender may cache the object and replace it with a proxy instead +system, a sender may cache such an object and send a proxy instead of throwing an error. The recipient can subsequently refer to the object -using the same Proxy tag when it sends a message back. +using the Proxy tag when it sends another message back. When the proxy's content is an array, it MUST consist of at least two elements. The first is a text string, integer, or (if global uniqueness is required) a UUID that uniquely identifies the origin of the proxy object. The remainder of the array holds the data which the originator requires -in order to access or recover the original. +to access or recover the original. An API to release auto-generated proxies is recommended but out of scope of this specification.