-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0bd34f
commit fabe074
Showing
1 changed file
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
module ietf-schc-compound-ack { | ||
yang-version 1.1; | ||
namespace "urn:ietf:params:xml:ns:yang:ietf-schc-coap"; | ||
prefix schc-coap-ext; | ||
|
||
import ietf-schc { | ||
prefix schc; | ||
} | ||
|
||
organization | ||
"IETF IPv6 over Low Power Wide-Area Networks (lpwan) working group"; | ||
contact | ||
"WG Web: <https://datatracker.ietf.org/wg/lpwan/about/> | ||
WG List: <mailto:[email protected]> | ||
Editor: Juan-Carlos Zuniga | ||
<mailto:[email protected]>"; | ||
description | ||
" | ||
Copyright (c) 2021 IETF Trust and the persons identified as | ||
authors of the code. All rights reserved. | ||
Redistribution and use in source and binary forms, with or | ||
without modification, is permitted pursuant to, and subject to | ||
the license terms contained in, the Simplified BSD License set | ||
forth in Section 4.c of the IETF Trust's Legal Provisions | ||
Relating to IETF Documents | ||
(https://trustee.ietf.org/license-info). | ||
This version of this YANG module is part of RFC XXXX | ||
(https://www.rfc-editor.org/info/rfcXXXX); see the RFC itself | ||
for full legal notices. | ||
The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL', 'SHALL | ||
NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'NOT RECOMMENDED', | ||
'MAY', and 'OPTIONAL' in this document are to be interpreted as | ||
described in BCP 14 (RFC 2119) (RFC 8174) when, and only when, | ||
they appear in all capitals, as shown here. | ||
************************************************************************* | ||
This module extends the ietf-schc module to include the compound-ack | ||
behavior for Ack On Error as defined in RFC YYYY. | ||
It introduces a new leaf for Ack on Error defining the format of the | ||
SCHC Ack and add the possibility to send several bitmaps in a single | ||
answer."; | ||
|
||
revision 2023-03-07 { | ||
description | ||
"Initial version for RFC YYYY "; | ||
reference | ||
"RFC YYYY: Compound Ack"; | ||
} | ||
|
||
identity fid-coap-option-hop-limit { | ||
base "schc:fid-coap-option"; | ||
description | ||
"Hop Limit option to avoid infinite forwarding loops."; | ||
reference | ||
"RFC 8768 Constrained Application Protocol (CoAP) | ||
Hop-Limit Option"; | ||
} | ||
|
||
identity fid-coap-option-echo { | ||
base "schc:fid-coap-option"; | ||
description | ||
"Echo option."; | ||
reference | ||
"RFC 9175 Constrained Application Protocol (CoAP): | ||
Echo, Request-Tag, and Token Processing"; | ||
} | ||
|
||
identity fid-coap-option-request-tag { | ||
base "schc:fid-coap-option"; | ||
description | ||
"Request-Tag option."; | ||
reference | ||
"RFC 9175 Constrained Application Protocol (CoAP): | ||
Echo, Request-Tag, and Token Processing"; | ||
} | ||
|
||
identity fid-coap-option-q-block1 { | ||
base "schc:fid-coap-option"; | ||
description | ||
"Q-Block1 option."; | ||
reference | ||
"RFC 9175 Constrained Application Protocol (CoAP) | ||
Block-Wise Transfer Options Supporting | ||
Robust Transmission"; | ||
} | ||
|
||
identity fid-coap-option-q-block2 { | ||
base "schc:fid-coap-option"; | ||
description | ||
"Q-Block2 option."; | ||
reference | ||
"RFC 9175 Constrained Application Protocol (CoAP) | ||
Block-Wise Transfer Options Supporting | ||
Robust Transmission"; | ||
} | ||
|
||
identity fid-coap-option-oscore-piv { | ||
base fid-coap-option; | ||
description | ||
"CoAP option OSCORE flags."; | ||
reference | ||
"RFC 8824 Static Context Header Compression (SCHC) for the | ||
Constrained Application Protocol (CoAP) (see | ||
Section 6.4) | ||
RFC XXXX Key Update for OSCORE (KUDOS)"; | ||
} | ||
|
||
identity fid-coap-option-oscore-x { | ||
base fid-coap-option; | ||
description | ||
"CoAP option OSCORE flags."; | ||
reference | ||
"RFC 8824 Static Context Header Compression (SCHC) for the | ||
Constrained Application Protocol (CoAP) (see | ||
Section 6.4) | ||
RFC XXXX Key Update for OSCORE (KUDOS)"; | ||
} | ||
|
||
identity fid-coap-option-oscore-nonce { | ||
base fid-coap-option; | ||
description | ||
"CoAP option OSCORE flags."; | ||
reference | ||
"RFC 8824 Static Context Header Compression (SCHC) for the | ||
Constrained Application Protocol (CoAP) (see | ||
Section 6.4) | ||
RFC XXXX Key Update for OSCORE (KUDOS)"; | ||
} | ||
|
||
identity fl-oscore-m-length { | ||
base fl-base-type; | ||
description | ||
"Size in bytes of the M."; | ||
reference | ||
"RFC 8824 Static Context Header Compression (SCHC) for the | ||
Constrained Application Protocol (CoAP) (see | ||
Section 5.3) | ||
RFC XXXX Key Update for OSCORE (KUDOS)"; | ||
} | ||
} |