Skip to content

Commit a351464

Browse files
committed
iana sync
1 parent f458271 commit a351464

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

c/src/coap_constants.h

+2
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,8 @@ typedef enum coap_content_format_t {
274274
COAP_CONTENT_FORMAT_APPLICATION_EAT_UCS_AS_CBOR = 267,
275275
// application/eat-ucs+json; Ref: [RFC-ietf-rats-eat-media-type-12]
276276
COAP_CONTENT_FORMAT_APPLICATION_EAT_UCS_AS_JSON = 268,
277+
// application/coap-eap; Ref: [RFC-ietf-ace-wg-coap-eap-14]
278+
COAP_CONTENT_FORMAT_APPLICATION_COAP_EAP = 269,
277279
// application/dots+cbor; Ref: [RFC9132]
278280
COAP_CONTENT_FORMAT_APPLICATION_DOTS_AS_CBOR = 271,
279281
// application/missing-blocks+cbor-seq; Ref: [RFC9177]

c/src/http_constants.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ typedef enum http_status_code_t {
168168
#define HTTP_FIELD_NAME_ACCESS_CONTROL_MAX_AGE "Access-Control-Max-Age" // Access-Control-Max-Age; permanent; Ref: [Fetch]
169169
#define HTTP_FIELD_NAME_ACCESS_CONTROL_REQUEST_HEADERS "Access-Control-Request-Headers" // Access-Control-Request-Headers; permanent; Ref: [Fetch]
170170
#define HTTP_FIELD_NAME_ACCESS_CONTROL_REQUEST_METHOD "Access-Control-Request-Method" // Access-Control-Request-Method; permanent; Ref: [Fetch]
171+
#define HTTP_FIELD_NAME_ACTIVATE_STORAGE_ACCESS "Activate-Storage-Access" // Activate-Storage-Access; Item; provisional; Ref: [https://privacycg.github.io/storage-access-headers]
171172
#define HTTP_FIELD_NAME_AGE "Age" // Age; permanent; Ref: [RFC9111, Section 5.1: HTTP Caching]
172173
#define HTTP_FIELD_NAME_ALLOW "Allow" // Allow; permanent; Ref: [RFC9110, Section 10.2.1: HTTP Semantics]
173174
#define HTTP_FIELD_NAME_ALPN "ALPN" // ALPN; permanent; Ref: [RFC 7639, Section 2: The ALPN HTTP Header Field]
@@ -200,7 +201,7 @@ typedef enum http_status_code_t {
200201
#define HTTP_FIELD_NAME_CMCD_STATUS "CMCD-Status" // CMCD-Status; provisional; Ref: [CTA][CTA-5004 Common Media Client Data]
201202
#define HTTP_FIELD_NAME_CMSD_DYNAMIC "CMSD-Dynamic" // CMSD-Dynamic; provisional; Ref: [CTA][CTA-5006 Common Media Server Data (CMSD)]
202203
#define HTTP_FIELD_NAME_CMSD_STATIC "CMSD-Static" // CMSD-Static; provisional; Ref: [CTA][CTA-5006 Common Media Server Data (CMSD)]
203-
#define HTTP_FIELD_NAME_CONCEALED_AUTH_EXPORT "Concealed-Auth-Export" // Concealed-Auth-Export; Item; permanent; Ref: [RFC-ietf-httpbis-unprompted-auth-12: The Concealed HTTP Authentication Scheme]
204+
#define HTTP_FIELD_NAME_CONCEALED_AUTH_EXPORT "Concealed-Auth-Export" // Concealed-Auth-Export; Item; permanent; Ref: [RFC9729: The Concealed HTTP Authentication Scheme]
204205
#define HTTP_FIELD_NAME_CONFIGURATION_CONTEXT "Configuration-Context" // Configuration-Context; provisional; Ref: [OSLC Configuration Management Version 1.0. Part 3: Configuration Specification]
205206
#define HTTP_FIELD_NAME_CONNECTION "Connection" // Connection; permanent; Ref: [RFC9110, Section 7.6.1: HTTP Semantics]
206207
#define HTTP_FIELD_NAME_CONTENT_BASE "Content-Base" // Content-Base; obsoleted; Ref: [RFC 2068: Hypertext Transfer Protocol -- HTTP/1.1]
@@ -241,6 +242,7 @@ typedef enum http_status_code_t {
241242
#define HTTP_FIELD_NAME_DEPTH "Depth" // Depth; permanent; Ref: [RFC 4918: HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)]
242243
#define HTTP_FIELD_NAME_DERIVED_FROM "Derived-From" // Derived-From; obsoleted; Ref: [RFC 2068: Hypertext Transfer Protocol -- HTTP/1.1]
243244
#define HTTP_FIELD_NAME_DESTINATION "Destination" // Destination; permanent; Ref: [RFC 4918: HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)]
245+
#define HTTP_FIELD_NAME_DETACHED_JWS "Detached-JWS" // Detached-JWS; permanent; Ref: [RFC 9635: Grant Negotiation and Authorization Protocol (GNAP)]
244246
#define HTTP_FIELD_NAME_DICTIONARY_ID "Dictionary-ID" // Dictionary-ID; permanent; Ref: [RFC-ietf-httpbis-compression-dictionary-19, Section 2.3: Compression Dictionary Transport]
245247
#define HTTP_FIELD_NAME_DIFFERENTIAL_ID "Differential-ID" // Differential-ID; deprecated; Ref: [The HTTP Distribution and Replication Protocol]
246248
#define HTTP_FIELD_NAME_DIGEST "Digest" // Digest; obsoleted; Ref: [RFC 3230: Instance Digests in HTTP]
@@ -342,6 +344,7 @@ typedef enum http_status_code_t {
342344
#define HTTP_FIELD_NAME_SCHEDULE_REPLY "Schedule-Reply" // Schedule-Reply; permanent; Ref: [RFC 6638: Scheduling Extensions to CalDAV]
343345
#define HTTP_FIELD_NAME_SCHEDULE_TAG "Schedule-Tag" // Schedule-Tag; permanent; Ref: [RFC 6338: Scheduling Extensions to CalDAV]
344346
#define HTTP_FIELD_NAME_SECURITY_SCHEME "Security-Scheme" // Security-Scheme; obsoleted; Ref: [RFC 2660: The Secure HyperText Transfer Protocol]
347+
#define HTTP_FIELD_NAME_SEC_FETCH_STORAGE_ACCESS "Sec-Fetch-Storage-Access" // Sec-Fetch-Storage-Access; Token; provisional; Ref: [https://privacycg.github.io/storage-access-headers]
345348
#define HTTP_FIELD_NAME_SEC_GPC "Sec-GPC" // Sec-GPC; provisional; Ref: [Global Privacy Control (GPC)]
346349
#define HTTP_FIELD_NAME_SEC_PURPOSE "Sec-Purpose" // Sec-Purpose; permanent; Ref: [Fetch]
347350
#define HTTP_FIELD_NAME_SEC_TOKEN_BINDING "Sec-Token-Binding" // Sec-Token-Binding; permanent; Ref: [RFC 8473: Token Binding over HTTP]

0 commit comments

Comments
 (0)