-
Notifications
You must be signed in to change notification settings - Fork 255
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
Showing
3 changed files
with
229 additions
and
30 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
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,77 @@ | ||
; ---------------------------------------- | ||
; RFC 5234 | ||
; ---------------------------------------- | ||
|
||
HTAB = %x09 ; horizontal tab | ||
|
||
SP = %x20 | ||
|
||
DIGIT = %x30-39 ; 0-9 | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; RFC 7230 | ||
; ---------------------------------------- | ||
|
||
OWS = *( SP / HTAB ) | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; RFC 7231 | ||
; ---------------------------------------- | ||
|
||
date1 = day SP month SP year ; e.g., 02 Jun 1982 | ||
|
||
day = 2DIGIT | ||
|
||
month = %x4A.61.6E ; "Jan", case-sensitive | ||
/ %x46.65.62 ; "Feb", case-sensitive | ||
/ %x4D.61.72 ; "Mar", case-sensitive | ||
/ %x41.70.72 ; "Apr", case-sensitive | ||
/ %x4D.61.79 ; "May", case-sensitive | ||
/ %x4A.75.6E ; "Jun", case-sensitive | ||
/ %x4A.75.6C ; "Jul", case-sensitive | ||
/ %x41.75.67 ; "Aug", case-sensitive | ||
/ %x53.65.70 ; "Sep", case-sensitive | ||
/ %x4F.63.74 ; "Oct", case-sensitive | ||
/ %x4E.6F.76 ; "Nov", case-sensitive | ||
/ %x44.65.63 ; "Dec", case-sensitive | ||
|
||
year = 4DIGIT | ||
|
||
day-name = %x4D.6F.6E ; Mon | ||
/ %x54.75.65 ; Tue | ||
/ %x57.65.64 ; Wed | ||
/ %x54.68.75 ; Thu | ||
/ %x46.72.69 ; Fri | ||
/ %x53.61.74 ; Sat | ||
/ %x53.75.6E ; Sun | ||
|
||
time-of-day = hour ":" minute ":" second | ||
|
||
hour = 2DIGIT | ||
|
||
minute = 2DIGIT | ||
|
||
second = 2DIGIT | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; 3GPP TS 29.502 | ||
; | ||
; Version: 18.4.0 (September 2023) | ||
; | ||
; (c) 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). | ||
; ---------------------------------------- | ||
|
||
; | ||
; Header: 3gpp-Sbi-Origination-Timestamp | ||
; | ||
|
||
Sbi-Origination-Timestamp-Header = "3gpp-Sbi-Origination-Timestamp:" OWS day-name "," | ||
SP date1 SP time-of-day "." milliseconds SP "GMT" OWS | ||
|
||
milliseconds = 3DIGIT |
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,109 @@ | ||
; ---------------------------------------- | ||
; RFC 5234 | ||
; ---------------------------------------- | ||
|
||
HTAB = %x09 ; horizontal tab | ||
|
||
LF = %x0A ; linefeed | ||
|
||
CR = %x0D ; carriage return | ||
|
||
SP = %x20 | ||
|
||
DQUOTE = %x22 ; " (Double Quote) | ||
|
||
DIGIT = %x30-39 ; 0-9 | ||
|
||
ALPHA = %x41-5A / %x61-7A ; A-Z / a-z | ||
|
||
VCHAR = %x21-7E ; visible (printing) characters | ||
|
||
WSP = SP / HTAB ; white space | ||
|
||
CRLF = CR LF ; Internet standard newline | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; RFC 5322 | ||
; ---------------------------------------- | ||
|
||
obs-FWS = 1*WSP *( CRLF 1*WSP ) | ||
|
||
FWS = ( [ *WSP CRLF ] 1*WSP ) / obs-FWS | ||
|
||
obs-NO-WS-CTL = %d1-8 / %d11 / %d12 / %d14-31 / %d127 | ||
|
||
obs-ctext = obs-NO-WS-CTL | ||
|
||
ctext = %d33-39 / %d42-91 / %d93-126 / obs-ctext | ||
|
||
obs-qp = "\" ( obs-NO-WS-CTL / LF / CR ) | ||
|
||
quoted-pair = ( "\" ( VCHAR / WSP ) ) / obs-qp | ||
|
||
ccontent = ctext / quoted-pair / comment | ||
|
||
comment = "(" *( [ FWS ] ccontent ) [ FWS ] ")" | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; RFC 7230 | ||
; ---------------------------------------- | ||
|
||
OWS = *( SP / HTAB ) | ||
|
||
tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" | ||
/ "." / "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA | ||
|
||
token = 1*tchar | ||
|
||
obs-text = %x80-FF | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; RFC 7232 | ||
; ---------------------------------------- | ||
|
||
entity-tag = [ weak ] opaque-tag | ||
|
||
weak = %x57.2F ; "W/", case-sensitive | ||
|
||
opaque-tag = DQUOTE *etagc DQUOTE | ||
|
||
etagc = %x21 / %x23-7E / obs-text ; VCHAR except double quotes, plus obs-text | ||
|
||
|
||
|
||
; ---------------------------------------- | ||
; 3GPP TS 29.504 | ||
; | ||
; Version: 18.3.0 (September 2023) | ||
; | ||
; (c) 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). | ||
; ---------------------------------------- | ||
|
||
; | ||
; Header: 3gpp-Sbi-Notification-Correlation | ||
; | ||
|
||
Sbi-Notification-Correlation-Header = "3gpp-Sbi-Notification-Correlation:" OWS subscriptionId | ||
*( OWS "," OWS subscriptionId ) OWS | ||
|
||
subscriptionId = token | ||
|
||
|
||
|
||
; | ||
; Header: 3gpp-Sbi-Etags | ||
; | ||
|
||
Sbi-Etags-Header = "3gpp-Sbi-Etags:" OWS datasetEtag *( OWS "," OWS datasetEtag ) OWS | ||
|
||
datasetEtag = dataSetName "=" entity-tag | ||
|
||
dataSetName = UeSubscribedDataSetName | ||
|
||
UeSubscribedDataSetName = 1*( ALPHA / DIGIT / "_" ) |